src/SinglePlayer.hh
author saiam
Sun, 07 Dec 2008 19:40:40 +0000
changeset 251 6a6208e5c7a1
parent 209 68cc4248a508
child 283 7540b0859579
permissions -rw-r--r--
Added recoil parameter for weapons, but it is not used yet.
#ifndef SINGLE_PLAYER_HH
#define SINGLE_PLAYER_HH

#include "GameState.hh"

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

#endif /* SINGLE_PLAYER_HH */