
## Objective Add integer equivalents for the `Rect` type. Closes #7967 ## Solution - Add `IRect` and `URect` ## Changelog Added `IRect` and `URect` types.
8 lines
97 B
Rust
8 lines
97 B
Rust
mod irect;
|
|
mod rect;
|
|
mod urect;
|
|
|
|
pub use irect::IRect;
|
|
pub use rect::Rect;
|
|
pub use urect::URect;
|