src/SinglePlayer.hh
author terom
Thu, 04 Dec 2008 23:28:52 +0000
changeset 205 905028e58ed1
parent 185 25becd2cb026
child 209 68cc4248a508
permissions -rw-r--r--
implement a new tick-timer that doesn't suck
#ifndef SINGLE_PLAYER_HH
#define SINGLE_PLAYER_HH

#include "GameState.hh"

class SinglePlayer : public LocalPlayer {
    public:
        SinglePlayer (GameState &state) : LocalPlayer(state, Vector(PLAYER_INITIAL_X, PLAYER_INITIAL_Y), true) { }
};

#endif /* SINGLE_PLAYER_HH */