Initial commit
This commit is contained in:
commit
039657cd0b
|
@ -0,0 +1,3 @@
|
||||||
|
/target
|
||||||
|
**/*.rs.bk
|
||||||
|
Cargo.lock
|
|
@ -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"
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
fn main() {
|
||||||
|
println!("Hello, world!");
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
#![warn(missing_docs)]
|
||||||
|
|
||||||
|
//! This crates contains the (future) rusty game.
|
||||||
|
|
||||||
|
extern crate sfml;
|
||||||
|
|
Loading…
Reference in New Issue