This commit is contained in:
yuni 2024-03-18 03:20:22 +01:00
parent f4dc03516b
commit 1e7fc6030b

View file

@ -17,7 +17,6 @@ impl Plugin for ActorPlugin {
pub struct Actor {
pub hp: f32,
pub m: f32, // mass
pub pos: Vec3, // position
pub v: Vec3, // velocity
// TODO: rotation
}
@ -27,7 +26,6 @@ impl Default for Actor {
Self {
hp: 100.0,
m: 100.0,
pos: Vec3::ZERO,
v: Vec3::ZERO,
}
}