Hubris Engine Dev
A Project to learn and get into Game Engine developement.
 
Loading...
Searching...
No Matches
ThreaddingServer.h
Go to the documentation of this file.
1#pragma once
2#ifdef HBR_THREADSRV
3#else
4#define HBR_THREADSRV
5namespace Hubris::Core {
6 class ThreaddingServer {
7 ThreaddingServer() = default;
8 public:
9 virtual ~ThreaddingServer() = 0;
10 virtual void Initialize(unsigned int Tcount) = 0;
11 virtual void Shutdown() = 0;
12 };
13}
14#endif
virtual void Initialize(unsigned int Tcount)=0