From f6704d845104a277717b07152ab83c183a00acc2 Mon Sep 17 00:00:00 2001 From: SelfDevTv Date: Mon, 27 May 2024 22:04:38 +0200 Subject: [PATCH] create world example first --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index d30097c..f6ab97f 100644 --- a/README.md +++ b/README.md @@ -145,6 +145,10 @@ Concord.utils.loadNamespace("path/to/systems", Systems) print(Systems.systemName) -- Registers the loaded systems. Either with a for loop for automatic registering, or manually (you can choose the order) +-- Create World first, also see: +[Worlds](#worlds) +local myWorld = Concord.world() + --for loop for _, system in pairs(Systems) do world:addSystem(system)