[ create a new paste ] login | about

Link: http://codepad.org/cQY8unuq    [ raw code | fork ]

totoPon - C++, pasted on May 22:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*--------------------
 * main.cpp - テトリス
 *--------------------*/

#include <iostream>

#include "TetrisBase/TetrisMain.hpp"

using namespace std;
using namespace TetrisBase;

int main(int argc, char *argv[])
{
  TetrisMain tetMain;
  tetMain.run();

  return 0;
}


Create a new paste based on this one


Comments: