src/proto2/SinglePlayer.hh
author ekku
Mon, 24 Nov 2008 22:05:19 +0000
changeset 104 5cb116dc0759
parent 68 f4457e62439a
permissions -rw-r--r--
Pomppii paremmin
#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 */