mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-22 14:58:44 -06:00
9 lines
217 B
Rust
9 lines
217 B
Rust
use shipyard::Component;
|
|
use glam::{Mat4, Mat3};
|
|
|
|
#[derive(Component, Clone, Copy, Debug, Default)]
|
|
pub struct Transform(pub Mat4);
|
|
|
|
#[derive(Component, Clone, Copy, Debug, Default)]
|
|
pub struct Transform2d(pub Mat3);
|