Rename CBoardData, refactor a few things and add a maths library folder

This commit is contained in:
Marc Di Luzio 2014-12-16 13:12:53 +00:00
parent e8429ae4a2
commit 743c9a2859
11 changed files with 150 additions and 116 deletions

View file

@ -5,6 +5,7 @@ project( ttrts-test )
include_directories(
../game
../maths
)
set( SOURCES

View file

@ -1,7 +1,7 @@
#include "game.h"
#include "board.h"
// Main program entry point
int main()
{
tests::test_CBoardData();
tests::test_CBoard();
};