chore: initialise client and README.md

This commit is contained in:
Muhammad Nauman Raza 2025-02-18 15:24:58 +00:00
commit 5214d53c54
Signed by: devraza
GPG key ID: 91EAD6081011574B
3 changed files with 13 additions and 0 deletions

4
README.md Normal file
View file

@ -0,0 +1,4 @@
# txtris
---
This is the repository for the official server and client for txtris, a stacking game.

6
client/Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "client"
version = "0.1.0"
edition = "2024"
[dependencies]

3
client/src/main.rs Normal file
View file

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