Browse Source

Add ToolTip.pkg.

Lasse Öörni 12 years ago
parent
commit
ebae184947
1 changed files with 13 additions and 0 deletions
  1. 13 0
      Source/Engine/LuaScript/pkgs/UI/ToolTip.pkg

+ 13 - 0
Source/Engine/LuaScript/pkgs/UI/ToolTip.pkg

@@ -0,0 +1,13 @@
+$#include "ToolTip.h"
+
+class ToolTip : public UIElement
+{
+    ToolTip(Context* context);
+    virtual ~ToolTip();
+
+    void SetDelay(float delay);
+    
+    float GetDelay() const;
+    
+    tolua_property__get_set float delay;
+};