Add GameServer header files

This commit is contained in:
2025-01-18 00:55:31 -05:00
parent ebdcae945f
commit 3fac7e61ce
2 changed files with 22 additions and 9 deletions

View File

@@ -1,8 +1,17 @@
//
// Created by dawsh on 11/12/24.
//
#pragma once
#ifndef RECAVEGAME_GAMESERVER_HPP
#define RECAVEGAME_GAMESERVER_HPP
#endif //RECAVEGAME_GAMESERVER_HPP
namespace CaveGame::Server
{
/// A sub-service that runs alongside the game server for session authentication over TCP.
class AuthServer
{
};
class GameServer {
public:
protected:
private:
};
}

View File

@@ -1,3 +1,7 @@
//
// Created by dawsh on 11/12/24.
//
#include <Server/GameServer.hpp>
namespace CaveGame::Server
{
}