new file: design.md

This commit is contained in:
Murteza Yesil 2020-11-05 20:42:02 +06:00
parent c0832f39a3
commit 8bf2ba59c8
4 changed files with 21 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "tildecity"
version = "0.1.0"
authors = ["murteza"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

8
DESIGN.md Normal file
View File

@ -0,0 +1,8 @@
# tildecity - City Builder in CLI
This is where we will write about the desing of the game.
Ways you can contribute to design:
1. Tildeverse IRC
2. Email me at murteza@tilde.team (but IRC is priority)
3. Push Request (again, IRC is recommended)

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}