You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
322 B
C++
22 lines
322 B
C++
7 years ago
|
//
|
||
|
// Created by koncord on 02.01.18.
|
||
|
//
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
class Player;
|
||
|
|
||
|
class BaseMgr
|
||
|
{
|
||
|
public:
|
||
|
explicit BaseMgr(Player *player);
|
||
|
void update();
|
||
|
protected:
|
||
|
bool isChanged() const { return changed; };
|
||
|
void setChanged();
|
||
|
virtual void processUpdate() = 0;
|
||
|
Player *player;
|
||
|
private:
|
||
|
bool changed;
|
||
|
};
|