2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 20:27:42 +00:00

CScannableObjectInfo imps

This commit is contained in:
2016-08-03 16:20:31 -07:00
parent dc1ad1c773
commit 165735ba1b
11 changed files with 562 additions and 4 deletions

View File

@@ -92,6 +92,7 @@ set(GUISYS_SOURCES
CWordBreakTables.cpp
CWordBreakTables.hpp
CFontImageDef.cpp
CFontImageDef.hpp)
CFontImageDef.hpp
ITweakGui.hpp)
runtime_add_list(GuiSys GUISYS_SOURCES)

View File

@@ -0,0 +1,18 @@
#ifndef __URDE_ITWEAKGUI_HPP__
#define __URDE_ITWEAKGUI_HPP__
#include "RetroTypes.hpp"
#include "ITweak.hpp"
namespace urde
{
class ITweakGui : public ITweak
{
public:
virtual ~ITweakGui() {}
virtual float GetScanSpeed(s32) const=0;
};
}
#endif // __URDE_ITWEAKGUI_HPP__