Initial commit

This commit is contained in:
2018-10-02 14:12:52 +02:00
commit 039657cd0b
4 changed files with 24 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
/target
**/*.rs.bk
Cargo.lock
+12
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
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}
+6
View File
@@ -0,0 +1,6 @@
#![warn(missing_docs)]
//! This crates contains the (future) rusty game.
extern crate sfml;