diff GUIProgressBar.h @ 0:9c0607679772

init
author Ritor1
date Sat, 12 Jan 2013 09:45:18 +0600
parents
children 137c59c3dbc4
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GUIProgressBar.h	Sat Jan 12 09:45:18 2013 +0600
@@ -0,0 +1,50 @@
+#pragma once
+#include "Texture.h"
+
+
+/*  278 */
+#pragma pack(push, 1)
+struct GUIProgressBar
+{
+  enum Type: unsigned __int32
+  {
+    TYPE_Fullscreen = 1
+  };
+
+  bool _443484(Type type);
+  void Reset(unsigned __int8 uMaxProgress);
+  void Progress();
+  void Release();
+  void Draw();
+
+  __int16 uX;
+  __int16 uY;
+  __int16 uWidth;
+  __int16 uHeight;
+  char field_8;
+  char field_9;
+  char uProgressMax;
+  char uProgressCurrent;
+  Type uType;
+  char field_10;
+  char field_11;
+  char field_12;
+  char field_13;
+  char field_14;
+  char field_15;
+  char field_16;
+  char field_17;
+  RGBTexture pLoadingBg;
+  RGBTexture field_40;
+  RGBTexture field_68;
+  RGBTexture field_90;
+  RGBTexture field_B8;
+  Texture field_E0;
+  Texture pBardata;
+  Texture pLoadingProgress;
+};
+#pragma pack(pop)
+
+
+
+extern struct GUIProgressBar *pGameLoadingUI_ProgressBar;
\ No newline at end of file