Initial Commit
Initial commit which pushes up a bare cargo project with the shareware version of doom added.
This commit is contained in:
15
.gitignore
vendored
Normal file
15
.gitignore
vendored
Normal file
@@ -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
|
||||
|
||||
8
Cargo.toml
Normal file
8
Cargo.toml
Normal file
@@ -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]
|
||||
BIN
WADs/doom1.wad
Normal file
BIN
WADs/doom1.wad
Normal file
Binary file not shown.
3
src/main.rs
Normal file
3
src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Reference in New Issue
Block a user