Advertisement
Guest User

main.cpp

a guest
Mar 6th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. #include <SFML/Graphics.hpp>
  2. #include "game.hpp"
  3. #include <iostream>
  4.  
  5. int main()
  6. {
  7.    Game TicTacToe;
  8.    TicTacToe.RunEngine();
  9.  
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement