Update some things.

This commit is contained in:
Signal 2026-04-06 18:30:52 -04:00
parent f215bc3742
commit f9d6e7a70a
35 changed files with 575 additions and 905 deletions

View file

@ -0,0 +1,7 @@
//
// WorldBackend.cpp
// ArtifactEngine
//
// Created by Isaac Boettcher on 3/11/26.
//

View file

@ -0,0 +1,10 @@
#pragma once
namespace Artifact {
class WorldBackend {
virtual void saveChunk();
virtual void loadChukn();
};
}

View file

@ -0,0 +1,11 @@
#include "WorldManager.h"
#include <filesystem>
namespace Artifact {
void WorldManager::tick() {
}
}

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;
};
}