cirno-puzzle/main.cpp

9 lines
92 B
C++
Raw Normal View History

2020-02-19 12:50:09 -05:00
#include <iostream>
#include "game.h"
int main()
{
Game game;
return game.run();
}