NouVeL/ADVect/ADVect.h

17 lines
248 B
C
Raw Permalink Normal View History

#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 {
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
}