1
0
Fork 0
This commit is contained in:
Florian RICHER 2020-11-29 18:18:11 +01:00
commit a68b8bc000
13 changed files with 370 additions and 0 deletions

5
src/entities/mod.rs Normal file
View file

@ -0,0 +1,5 @@
mod entity;
mod player;
pub use entity::Entity;
pub use player::Player;