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,19 @@
#ifndef _HUMAN_PLAYER_
#define _HUMAN_PLAYER_
#include "player.h"
class HumanPlayer : public Player {
public:
HumanPlayer( Field::Token token, const char* name );
virtual ~HumanPlayer();
virtual Field::Move Turn( const Field& field ) const;
private:
Field::Move Input() const;
bool Check( const Field& field, const Field::Move& move ) const;
};
#endif // _HUMAN_PLAYER_