summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/Cargo.toml15
-rw-r--r--client/src/main.rs3
2 files changed, 18 insertions, 0 deletions
diff --git a/client/Cargo.toml b/client/Cargo.toml
new file mode 100644
index 0000000..1c8e411
--- /dev/null
+++ b/client/Cargo.toml
@@ -0,0 +1,15 @@
+[package]
+name = "bowshock-client"
+edition = "2021"
+
+version.workspace = true
+authors.workspace = true
+readme.workspace = true
+homepage.workspace = true
+repository.workspace = true
+
+[dependencies]
+bowshock = { path = "../core" }
+
+[lints]
+workspace = true
diff --git a/client/src/main.rs b/client/src/main.rs
new file mode 100644
index 0000000..2235f75
--- /dev/null
+++ b/client/src/main.rs
@@ -0,0 +1,3 @@
+// Copyright 2022-2024 Gabriel Bjørnager Jensen.
+
+fn main() { }