Initial commit.

This commit is contained in:
Signal 2026-02-22 17:45:44 -05:00
commit f215bc3742
43 changed files with 2983 additions and 0 deletions

13
Server/Server.h Normal file
View file

@ -0,0 +1,13 @@
#pragma once
#include "Shared.h"
namespace Artifact {
class Server: public Engine<BaseSubsystem> {
public:
void run();
void addDefaultSubsystems();
};
}