src/SinglePlayer.hh
author Tero Marttila <terom@fixme.fi>
Tue, 13 Jan 2009 20:17:03 +0200
changeset 389 e74c1820fbd2
parent 283 7540b0859579
child 409 1a03ff151abc
permissions -rw-r--r--
implement --help, --fullscreen, --resolution and --list-modes
#ifndef SINGLE_PLAYER_HH
#define SINGLE_PLAYER_HH

#include "GameState.hh"

/**
 * Simple class used to define the LocalPlayer used by Engine to run a local non-network game
 */
class SinglePlayer : public LocalPlayer {
    public:
        SinglePlayer (GameState &state) :
            Player(state, Vector(PLAYER_INITIAL_X, PLAYER_INITIAL_Y), true)
        { 
        
        }
};

#endif /* SINGLE_PLAYER_HH */