2022-08-28 09:40:27 -04:00
|
|
|
#pragma once
|
|
|
|
|
2022-05-09 01:50:09 -04:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <Parser.h>
|
|
|
|
|
2022-08-18 12:17:43 -04:00
|
|
|
namespace ADVect {
|
2022-08-27 03:04:39 -04:00
|
|
|
bool Init(std::string name, const std::vector<NVL::Parse::Scene>& sc);
|
2022-08-18 12:17:43 -04:00
|
|
|
void Run();
|
2022-08-30 05:37:45 -04:00
|
|
|
void Shutdown();
|
|
|
|
|
2022-08-18 12:17:43 -04:00
|
|
|
void Update();
|
|
|
|
void Render();
|
2022-08-30 05:37:45 -04:00
|
|
|
|
2022-08-18 12:17:43 -04:00
|
|
|
void Advance();
|
2022-05-09 01:50:09 -04:00
|
|
|
}
|