mirror of
https://github.com/Maks1mS/pppi-rpg-game.git
synced 2024-12-24 14:44:39 +03:00
15 lines
280 B
C++
15 lines
280 B
C++
|
#include "game_engine.h"
|
||
|
|
||
|
int main() {
|
||
|
GameEngine engine;
|
||
|
engine.initialize();
|
||
|
|
||
|
while (true) {
|
||
|
engine.update(0.016); // Предполагаем фиксированный таймстеп
|
||
|
engine.render();
|
||
|
}
|
||
|
|
||
|
engine.shutdown();
|
||
|
return 0;
|
||
|
}
|