From 5214d53c54a9e01aab82f895cf318cb843182f1f Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Tue, 18 Feb 2025 15:24:58 +0000 Subject: [PATCH] chore: initialise client and README.md --- README.md | 4 ++++ client/Cargo.toml | 6 ++++++ client/src/main.rs | 3 +++ 3 files changed, 13 insertions(+) create mode 100644 README.md create mode 100644 client/Cargo.toml create mode 100644 client/src/main.rs 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!"); +}