Initial commit.
This commit is contained in:
commit
f215bc3742
43 changed files with 2983 additions and 0 deletions
6
Server/CMakeLists.txt
Normal file
6
Server/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
file(GLOB_RECURSE MY_SOURCES CONFIGURE_DEPENDS
|
||||
"*.cpp"
|
||||
"*.h"
|
||||
)
|
||||
|
||||
add_library(Server ${MY_SOURCES})
|
||||
14
Server/Server.cpp
Normal file
14
Server/Server.cpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#include "Server.h"
|
||||
#include "Network/Network.h"
|
||||
|
||||
namespace Artifact {
|
||||
|
||||
void Server::run() {
|
||||
|
||||
}
|
||||
|
||||
void Server::addDefaultSubsystems() {
|
||||
addSubsystem<NetworkServer>();
|
||||
}
|
||||
|
||||
}
|
||||
13
Server/Server.h
Normal file
13
Server/Server.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#pragma once
|
||||
|
||||
#include "Shared.h"
|
||||
|
||||
namespace Artifact {
|
||||
|
||||
class Server: public Engine<BaseSubsystem> {
|
||||
public:
|
||||
void run();
|
||||
void addDefaultSubsystems();
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue