8 lines
173 B
C#
8 lines
173 B
C#
|
using Tiger.Game.Habbos;
|
||
|
|
||
|
namespace Tiger.Game.Figuredata;
|
||
|
|
||
|
public interface IFigureDataManager
|
||
|
{
|
||
|
bool ValidateFigure(string newFigure, string newGender, Habbo habbo);
|
||
|
}
|