build: Packaging Script for Windows

* added packaging script for windows
* renamed sublime plugin.
* added tictactoe project to packages projects
This commit is contained in:
malte_langkabel
2015-11-16 15:42:23 +01:00
parent fc816240cb
commit 8f0213e18c
24 changed files with 625 additions and 3 deletions
@@ -0,0 +1,11 @@
#include "tictactoe.h"
int main() {
TicTacToe tictactoe;
while ( tictactoe.Start() ) {
tictactoe.Run();
}
return 0;
}