kernmodule-cpp/src/main.cpp

7 lines
91 B
C++
Raw Normal View History

2024-11-15 12:30:41 +00:00
#include "game.hpp"
2024-11-14 14:50:12 +00:00
int main(int argc, char* argv[]) {
2024-11-15 12:30:41 +00:00
Game game{};
game.run();
2024-11-14 14:50:12 +00:00
}