diff options
| author | Kai Stevenson <kai@kaistevenson.com> | 2026-08-30 18:42:16 -0700 |
|---|---|---|
| committer | Kai Stevenson <kai@kaistevenson.com> | 2026-08-30 18:42:16 -0700 |
| commit | 56bba5560be95c1e05bfec11e4fc085654f3589d (patch) | |
| tree | f4eee7eb7abdce9ab6d0a7a66e3e43d429229b97 /src/content | |
| parent | a0e3b22efb1d1a8b885717481061074459fe109f (diff) | |
working with tilesets
Diffstat (limited to 'src/content')
| -rw-r--r-- | src/content/mod.rs | 1 | ||||
| -rw-r--r-- | src/content/world/mines.rs | 0 | ||||
| -rw-r--r-- | src/content/world/mod.rs | 1 |
3 files changed, 2 insertions, 0 deletions
diff --git a/src/content/mod.rs b/src/content/mod.rs index ee2f47c..3293c6f 100644 --- a/src/content/mod.rs +++ b/src/content/mod.rs @@ -1,3 +1,4 @@ pub mod entities; pub mod materials; pub mod vfx; +pub mod world; diff --git a/src/content/world/mines.rs b/src/content/world/mines.rs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/content/world/mines.rs diff --git a/src/content/world/mod.rs b/src/content/world/mod.rs new file mode 100644 index 0000000..f12fc63 --- /dev/null +++ b/src/content/world/mod.rs @@ -0,0 +1 @@ +pub mod mines; |
