Initial commit.

This commit is contained in:
Signal 2026-02-22 17:45:44 -05:00
commit 82b4f23c06
56 changed files with 3485 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#pragma once
#include <Shared.h>
#include "../Server.h"
namespace Artifact {
class WorldManagerImpl: public ServerSubsystem {
};
class WorldManager: public WorldManagerImpl {
void tick() override;
};
}