This commit is contained in:
Evan Pratten 2021-04-24 15:27:00 -04:00
parent ef90e1ce66
commit ffe4d7f824
3 changed files with 10 additions and 1 deletions

View File

@ -0,0 +1,7 @@
pub trait EnemyBase {
fn render();
fn handle_logic();
fn handle_getting_attacked();
}

View File

@ -0,0 +1 @@
pub mod base;

View File

@ -1 +1,2 @@
pub mod fish; pub mod fish;
pub mod enemy;