blob: ed7927381ecfe3d9901c1aa943caef4208299b73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Hurry Curry!
A cooperative multiplayer game about cooking.
## Client
### Building
- `make client-assets`
- `cd client`
- Import all assets: `godot --import .`
### Usage
- `godot .`
## Server
### Building
- Build game data: `make -C data`
- Build the server program: `cargo build --release`
### Usage
- Run the server: `./target/release/hurrycurry-server`
## Test Client
### Building
- Compile typescript:
`esbuild test-client/main.ts --bundle --outdir=test-client --target=esnext --format=esm`
### Usage
- Serve `test-client` directory somehow. With python:
`python -m http.server 8080 -d test-client`
- Open the page with your browser.
## License
AGPL-3.0-only; See [COPYING](./COPYING).
|