mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-26 16:58:48 -06:00
7 lines
138 B
Rust
7 lines
138 B
Rust
use shipyard::Component;
|
|
use glam::Mat4;
|
|
|
|
#[derive(Component, Clone, Copy, Debug, Default)]
|
|
#[track(All)]
|
|
pub struct Transform(pub Mat4);
|