git repos / blockattack-game

source/code/menu/MenuItem.hpp

browsing at commit = 69f67d5f4f1dedde629034ca1e84e8bc15788a63

not on any branch

tags: v.2.0.0-SNAPSHOT-2016-03-20

raw · blame · history

/*
 * File:   MenuItem.hpp
 * Author: poul
 *
 * Created on 11. marts 2011, 20:41
 */

#ifndef _MENUITEM_HPP
#define	_MENUITEM_HPP

#include <string>

using namespace std;

class MenuItem
{
	virtual void SetSelected(bool selected) = 0;
	virtual void Activated() = 0;
	virtual string GetText() = 0;
	virtual void GetType() = 0;
	virtual void SetText(string text) = 0;
};


#endif	/* _MENUITEM_HPP */