src/proto2/SinglePlayer.hh
author nireco
Mon, 01 Dec 2008 17:46:52 +0000
changeset 160 ba0b6f421a3c
parent 68 f4457e62439a
permissions -rw-r--r--
not anything big
59
5b9b85489ef6 add missing SinglePlayer.hh
terom
parents:
diff changeset
     1
#ifndef SINGLE_PLAYER_HH
5b9b85489ef6 add missing SinglePlayer.hh
terom
parents:
diff changeset
     2
#define SINGLE_PLAYER_HH
5b9b85489ef6 add missing SinglePlayer.hh
terom
parents:
diff changeset
     3
5b9b85489ef6 add missing SinglePlayer.hh
terom
parents:
diff changeset
     4
#include "GameState.hh"
5b9b85489ef6 add missing SinglePlayer.hh
terom
parents:
diff changeset
     5
5b9b85489ef6 add missing SinglePlayer.hh
terom
parents:
diff changeset
     6
class SinglePlayer : public LocalPlayer {
5b9b85489ef6 add missing SinglePlayer.hh
terom
parents:
diff changeset
     7
    public:
68
f4457e62439a Fyssaa.
ekku
parents: 60
diff changeset
     8
        SinglePlayer (GameState &state) : LocalPlayer(state, Vector(PLAYER_INITIAL_X, PLAYER_INITIAL_Y), true) { }
59
5b9b85489ef6 add missing SinglePlayer.hh
terom
parents:
diff changeset
     9
};
5b9b85489ef6 add missing SinglePlayer.hh
terom
parents:
diff changeset
    10
5b9b85489ef6 add missing SinglePlayer.hh
terom
parents:
diff changeset
    11
#endif /* SINGLE_PLAYER_HH */