Skip to content

Commit

Permalink
quest: Implement PoC quest system with example
Browse files Browse the repository at this point in the history
  • Loading branch information
sulksamino committed Sep 23, 2024
1 parent b2995e5 commit 0975218
Show file tree
Hide file tree
Showing 7 changed files with 902 additions and 20 deletions.
88 changes: 69 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
resolver = "2"
members = ["flecs-core", "flecsdaemon", "flecsd-axum-server", "flecstract", "flecs-console-api/flecs_console_client", "flecs_app_manifest", "flecs_core_cxx_bridge"]
members = ["flecs-core", "flecsdaemon", "flecsd-axum-server", "flecstract", "flecs-console-api/flecs_console_client", "flecs_app_manifest", "flecs_core_cxx_bridge", "examples"]

[workspace.package]
rust-version = "1.76.0"
Expand Down
18 changes: 18 additions & 0 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[package]
name = "examples"
version = "0.0.0"
publish = false
rust-version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tokio = "1.40.0"
flecs-core = { path = "../flecs-core", version = "0.1.0" }

[[example]]
name = "princess_quest"
path = "princess_quest.rs"
Loading

0 comments on commit 0975218

Please # to comment.