1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-02-28 08:59:53 +00:00
Aquaria/Aquaria/RecipeMenuEntry.h

29 lines
404 B
C
Raw Normal View History

#ifndef RECIPEMENUENTRY_H
#define RECIPEMENUENTRY_H
#include "RenderObject.h"
class Recipe;
class Quad;
class BitmapText;
class IngredientData;
class RecipeMenuEntry : public RenderObject
{
public:
RecipeMenuEntry(Recipe *recipe);
protected:
void onUpdate(float dt);
Quad *result, *ing[3];
Quad *glow;
BitmapText *description;
IngredientData *data;
Recipe *recipe;
int selected;
};
#endif