19 lines
301 B
C++
19 lines
301 B
C++
#include <vector>
|
|
#include <string>
|
|
#include <Parser.h>
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
#include <Environment.h>
|
|
#include <Common.h>
|
|
|
|
namespace ADVect {
|
|
bool Init(std::string name, const std::vector<NVL::Parse::Scene>& sc);
|
|
void Shutdown();
|
|
|
|
void Run();
|
|
void Update();
|
|
void Render();
|
|
|
|
void Advance();
|
|
}
|