commit 5214d53c54a9e01aab82f895cf318cb843182f1f Author: Muhammad Nauman Raza Date: Tue Feb 18 15:24:58 2025 +0000 chore: initialise client and README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..9c803ae --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# txtris +--- + +This is the repository for the official server and client for txtris, a stacking game. diff --git a/client/Cargo.toml b/client/Cargo.toml new file mode 100644 index 0000000..09c50c3 --- /dev/null +++ b/client/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "client" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/client/src/main.rs b/client/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/client/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}