diff options
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/UT2Utils.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/T2DLL/UT2Utils.h b/src/T2DLL/UT2Utils.h new file mode 100644 index 0000000..df542ac --- /dev/null +++ b/src/T2DLL/UT2Utils.h @@ -0,0 +1,12 @@ +#pragma once +#include "common.h" + +class UT2Utils { +public: + static unsigned int Float2Int(float); + static void GetRoomNumberString(int, CString&); + static void GetHourMinute(int, int&, int&); + static void GetMonetaryString(int, CString&); + + static int Randomize(int) { return 1; } +}; |