6 lines
101 B
Rust
6 lines
101 B
Rust
use crate::utils::Position;
|
|
pub struct Enemy {
|
|
counter: u8,
|
|
pos: Position,
|
|
bitmap: u8,
|
|
}
|