About Social Code
summaryrefslogtreecommitdiff
path: root/world.rhm
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2025-03-23 00:17:59 +0000
committerLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2025-03-23 00:17:59 +0000
commita2feba2d918db861ea85d22887f73993c173e742 (patch)
tree7027dc2ded85a2ef0f8982e75099434f68c4a0d8 /world.rhm
parentbca429dd94dafc49cf9134040dfdfb6baf0de10c (diff)
Reorganize source, create basic threading and server
Need to create main world loop and have it message with web server
Diffstat (limited to 'world.rhm')
-rw-r--r--world.rhm26
1 files changed, 0 insertions, 26 deletions
diff --git a/world.rhm b/world.rhm
deleted file mode 100644
index 9357422..0000000
--- a/world.rhm
+++ /dev/null
@@ -1,26 +0,0 @@
-#lang rhombus/static
-import:
- "chunk.rhm" open
- "entity.rhm" open
- "item.rhm" open
-
-export:
- Chunk
- ActionResponse
- Direction
- World
- Tile
- Entity
- EntityPlayer
- EntityGatherable
- Direction
- ItemCap
- Item
- Slot
-
-class World(chunks :: MutableList.now_of(Chunk),
- entities :: MutableList.now_of(Entity)):
-
- constructor():
- super(MutableList(), MutableList())
-