11 lines
160 B
C++
11 lines
160 B
C++
|
|
#include "engine.h"
|
|
|
|
int main(){
|
|
Input* input;
|
|
Engine engine = Engine(input);
|
|
while(!input->isCloseRequested()){
|
|
engine.update();
|
|
}
|
|
}
|