mindustry logic execution, map- and schematic- parsing and rendering
Initial commit
| -rw-r--r-- | .gitignore | 6 | ||||
| -rw-r--r-- | Cargo.toml | 7 | ||||
| -rw-r--r-- | src/main.rs | 3 |
3 files changed, 16 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..43a3eb2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +# rustc/cargo outputs +/Cargo.lock +/target + +# Visual Studio Code +/.vscode diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..dc0982c --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "plandustry" +version = "0.0.1" +edition = "2021" +publish = false + +[dependencies] diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..6033e7c --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() +{ +} |