comparison src/th06/enemy.rs @ 737:0977d479e37d

ecl_vm: Uncomment instruction 121 function 8.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 28 Dec 2019 22:56:32 +0100
parents b9928db975e1
children 817c453b7223
comparison
equal deleted inserted replaced
736:ff9651cfe1b0 737:0977d479e37d
91 /// Current frame of the bullet. 91 /// Current frame of the bullet.
92 pub frame: i32, 92 pub frame: i32,
93 93
94 /// Current attributes of the bullet. 94 /// Current attributes of the bullet.
95 pub attributes: [f32; 2], 95 pub attributes: [f32; 2],
96
97 /// TODO: what are the values?
98 pub state: i8,
96 } 99 }
97 100
98 /// God struct of our game. 101 /// God struct of our game.
99 pub struct Game { 102 pub struct Game {
100 enemies: Vec<Rc<RefCell<Enemy>>>, 103 enemies: Vec<Rc<RefCell<Enemy>>>,