add tip to MeterDisplay

This commit is contained in:
Chris Danford
2004-01-18 20:43:36 +00:00
parent 9c34c2ae9b
commit c8d3e46ea4
3 changed files with 9 additions and 3 deletions
+2 -1
View File
@@ -20,7 +20,7 @@ class MeterDisplay : public ActorFrame
{
public:
MeterDisplay();
void Load( CString sStreamPath, float fStreamWidth );
void Load( CString sStreamPath, float fStreamWidth, CString sTipPath = "" );
void SetPercent( float fPercent );
@@ -28,6 +28,7 @@ private:
float m_fStreamWidth;
float m_fPercent;
Sprite m_sprStream;
Sprite m_sprTip;
};
#endif