a4a418a679
git-svn-id: http://mc-server.googlecode.com/svn/trunk@504 0a769ca7-a7f5-676a-18bf-c427514a06d6
47 lines
514 B
C++
47 lines
514 B
C++
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
class cItem;
|
|
|
|
|
|
|
|
|
|
|
|
class cFurnaceRecipe
|
|
{
|
|
public:
|
|
cFurnaceRecipe();
|
|
~cFurnaceRecipe();
|
|
|
|
void ReloadRecipes();
|
|
|
|
struct Fuel
|
|
{
|
|
cItem* In;
|
|
float BurnTime;
|
|
};
|
|
|
|
struct Recipe
|
|
{
|
|
cItem* In;
|
|
cItem* Out;
|
|
float CookTime;
|
|
};
|
|
const Recipe* GetRecipeFrom( const cItem & a_Ingredient ) const;
|
|
float GetBurnTime( const cItem & a_Fuel ) const;
|
|
|
|
private:
|
|
void ClearRecipes();
|
|
|
|
struct sFurnaceRecipeState;
|
|
sFurnaceRecipeState* m_pState;
|
|
};
|
|
|
|
|
|
|
|
|