00001 #ifndef _VGUI_LABEL_H 00002 #define _VGUI_LABEL_H 00003 00004 /* label.h */ 00005 #include "gui.h" 00006 00007 namespace VGUI 00008 { 00009 class Label : public Widget 00010 { 00011 public: 00012 Label() {} 00013 Label( Widget* w ); 00014 ~Label(); 00015 void Draw(); 00016 void Draw( float opacity ); 00017 00018 private: 00019 }; 00020 } 00021 00022 00023 #endif // _VGUI_LABEL_H
1.4.6