represent the world in a struct

This commit is contained in:
Martin HART 2020-10-28 12:07:20 +01:00
parent 77785e0d6d
commit c422060faf
1 changed files with 5 additions and 0 deletions

5
src/world.rs Normal file
View File

@ -0,0 +1,5 @@
/// The World is represented here.
pub struct World {
x: i32,
y: i32,
}