Initial commit

This commit is contained in:
Thomas Forgione 2018-10-02 14:12:52 +02:00
commit 039657cd0b
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
4 changed files with 24 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/target
**/*.rs.bk
Cargo.lock

12
Cargo.toml Normal file
View File

@ -0,0 +1,12 @@
[package]
name = "rusty"
version = "0.1.0"
authors = ["Thomas Forgione <thomas@forgione.fr>"]
[dependencies]
sfml = "0.14.0"
[[bin]]
name = "rusty-maker"
path = "src/game/main.rs"

3
src/game/main.rs Normal file
View File

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

6
src/lib.rs Normal file
View File

@ -0,0 +1,6 @@
#![warn(missing_docs)]
//! This crates contains the (future) rusty game.
extern crate sfml;