Setting up skeleton project
This commit is contained in:
parent
0e8fb69050
commit
98f1370031
14
.gitignore
vendored
Normal file
14
.gitignore
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
# Generated by Cargo
|
||||
# will have compiled files and executables
|
||||
debug/
|
||||
target/
|
||||
|
||||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
||||
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
||||
Cargo.lock
|
||||
|
||||
# These are backup files generated by rustfmt
|
||||
**/*.rs.bk
|
||||
|
||||
# MSVC Windows builds of rustc generate these, which store debugging information
|
||||
*.pdb
|
13
Cargo.toml
Normal file
13
Cargo.toml
Normal file
@ -0,0 +1,13 @@
|
||||
[workspace]
|
||||
members = ["./game/game_logic", "./game/desktop_wrapper"]
|
||||
exclude = [
|
||||
"./third_party/raylib-rs/raylib",
|
||||
"./third_party/raylib-rs/raylib-sys",
|
||||
]
|
||||
|
||||
[profile.release]
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
|
||||
[profile.dev]
|
||||
split-debuginfo = "unpacked"
|
11
README.md
11
README.md
@ -1,2 +1,13 @@
|
||||
# ludum-dare-50
|
||||
A game build over a weekend for Ludum Dare 50
|
||||
|
||||
|
||||
## Cloning
|
||||
|
||||
**IMPORTANT:** This project makes use of recursive submodules. Make sure to pull them via GitKracken, or with the following command:
|
||||
|
||||
```sh
|
||||
git submodule update --init --recursive
|
||||
```
|
||||
|
||||
*Your builds will fail unless this is done*
|
||||
|
@ -1,3 +1,13 @@
|
||||
# Here lives the code
|
||||
|
||||
This directory should contain game code and exported assets. No workfiles please :)
|
||||
|
||||
|
||||
## Directory structure
|
||||
|
||||
- `./game_logic`
|
||||
- Contains the actual game code
|
||||
- `./desktop_wrapper`
|
||||
- A tiny bit of code to initialize the game and run it
|
||||
- Used to improve the speed of the Rust compiler
|
||||
|
||||
|
9
game/desktop_wrapper/Cargo.toml
Normal file
9
game/desktop_wrapper/Cargo.toml
Normal file
@ -0,0 +1,9 @@
|
||||
[package]
|
||||
name = "desktop_wrapper"
|
||||
publish = false
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
4
game/desktop_wrapper/src/main.rs
Normal file
4
game/desktop_wrapper/src/main.rs
Normal file
@ -0,0 +1,4 @@
|
||||
|
||||
fn main(){
|
||||
|
||||
}
|
11
game/game_logic/Cargo.toml
Normal file
11
game/game_logic/Cargo.toml
Normal file
@ -0,0 +1,11 @@
|
||||
[package]
|
||||
name = "game_logic"
|
||||
publish = false
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
raylib = {version="3.5", path="../../third_party/raylib-rs/raylib"}
|
||||
# raylib = { version = "3.5", git = "https://github.com/ewpratten/raylib-rs", branch = "ludum-dare-50" }
|
0
game/game_logic/src/lib.rs
Normal file
0
game/game_logic/src/lib.rs
Normal file
Reference in New Issue
Block a user