diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2022-09-12 16:58:49 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2022-09-12 16:58:49 +0200 |
| commit | 0cefef407c45849e4e8855faad5adf27d68740cf (patch) | |
| tree | 4c47efa92677647caa35a3b320254e0da2acdace /src/main.rs | |
| parent | 36a7260f908de87b021d65641d5faa307b7d9652 (diff) | |
| download | gof-rs-0cefef407c45849e4e8855faad5adf27d68740cf.tar.xz gof-rs-0cefef407c45849e4e8855faad5adf27d68740cf.zip | |
moved all functions to generation.rs
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index 85f9eb0..056d16a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,11 +1,9 @@ #![allow(unused_imports, unused_variables, unused_mut)] mod generation; -mod gameloop; -use gameloop::*; use generation::*; fn main() { - run(); + generation::init() } |
