thatscringebro 9dfd911bff Init
2023-02-16 09:26:40 -05:00

18 lines
378 B
C++
Executable File

#include <iostream>
#include "../H/engine.h"
#include "../H/sounds.h"
void ManageSounds(Engine engine){
std::cout << "walking" << std::endl;
}
int main()
{
Engine engine;
Sounds sounds;
std::thread t(&Sounds::ManageSounds, &sounds, &engine);
engine.SetMaxFps(60);
engine.Start("TheLandofWildBlocs", 800, 600, true);
return 0;
}