mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-10 01:28:41 -06:00
11 lines
259 B
Rust
11 lines
259 B
Rust
use shipyard::Component;
|
|
use glam::{Mat4, Mat3};
|
|
|
|
#[derive(Component, Clone, Copy, Debug, Default)]
|
|
#[repr(transparent)]
|
|
pub struct Transform(pub Mat4);
|
|
|
|
#[derive(Component, Clone, Copy, Debug, Default)]
|
|
#[repr(transparent)]
|
|
pub struct Transform2d(pub Mat3);
|