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

28
Cargo.lock generated
View file

@ -506,6 +506,26 @@ version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
[[package]]
name = "engine_core"
version = "0.0.1"
dependencies = [
"engine_utils",
"image",
"vulkano",
"vulkano-shaders",
"vulkano-win",
"winit 0.23.0",
]
[[package]]
name = "engine_math"
version = "0.0.1"
[[package]]
name = "engine_utils"
version = "0.0.1"
[[package]]
name = "fnv"
version = "1.0.7"
@ -1441,11 +1461,9 @@ checksum = "3e5d7cd7ab3e47dda6e56542f4bbf3824c15234958c6e1bd6aaa347e93499fdc"
name = "tuto1"
version = "0.1.0"
dependencies = [
"image",
"vulkano",
"vulkano-shaders",
"vulkano-win",
"winit 0.23.0",
"engine_core",
"engine_math",
"engine_utils",
]
[[package]]