Theater-ECS/src/Example/MoverSystem.bf
Booklordofthedings 171b36d571 Initial Commit (#2)
Move to this branch for ecs changes

Reviewed-on: #2
2024-11-11 19:47:09 +01:00

13 lines
No EOL
231 B
Beef

namespace Theater_ECS.Example;
class MoverSystem : System
{
[SystemMethod("MoveItems", typeof(Velocity), typeof(Position))]
public void MoveItems(ref Velocity v,ref Position p)
{
//p.x = v.x + p.x;
//p.y = v.y = p.y;
}
}