11 lines
117 B
C++
11 lines
117 B
C++
#pragma once
|
|
|
|
class Engine
|
|
{
|
|
public:
|
|
Engine();
|
|
~Engine();
|
|
|
|
bool Init();
|
|
void Shutdown();
|
|
}; |