Init
This commit is contained in:
commit
a68b8bc000
13 changed files with 370 additions and 0 deletions
16
src/main.rs
Normal file
16
src/main.rs
Normal file
|
@ -0,0 +1,16 @@
|
|||
mod render;
|
||||
mod entities;
|
||||
mod math;
|
||||
|
||||
use entities::Entity;
|
||||
use entities::Player;
|
||||
use render::debug;
|
||||
use render::vulkan::test;
|
||||
|
||||
fn main() {
|
||||
let mut player = Player::new();
|
||||
debug(&player);
|
||||
player.get_transform().translate(10.0, 20.0);
|
||||
debug(&player);
|
||||
test();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue