1
0
Fork 0

Modularize + Refactoring code

This commit is contained in:
Florian RICHER 2020-12-04 21:44:51 +01:00
parent 813280350f
commit 00ab67b212
23 changed files with 2001 additions and 87 deletions

View file

@ -1,16 +1,7 @@
mod render;
mod entities;
mod math;
use entities::Entity;
use entities::Player;
use render::debug;
use render::vulkan::test;
use engine_core::test;
fn main() {
// let mut player = Player::new();
// debug(&player);
// player.get_transform().translate(10.0, 20.0);
// debug(&player);
test();
}