commit d138a9b923c1ab5be6173cef601f2311cf418ee1 Author: Wesley Irvin Date: Mon Apr 24 18:00:36 2023 -0400 Initial Commit Initial commit which pushes up a bare cargo project with the shareware version of doom added. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..03f0978 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +/target + +# WADs + +# We want to be able to distribute the shareware WAD (this shouldn't change much) +# and not allow other WADs to be pushed to git + +# First ignore the whole WADs directory +WADs/* + +# Then cancel the ignore on doom1.wad (shareware) +!WADs/doom1.wad + +# End WADs + diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3596e38 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "doom-oxidized" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/WADs/doom1.wad b/WADs/doom1.wad new file mode 100644 index 0000000..1a58f66 Binary files /dev/null and b/WADs/doom1.wad differ diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}