home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-05-19 | 614 b | 27 lines | [TEXT/CWIE] |
- // =================================================================================
- // GenText.h ©1997 BB's Team inc. All rights reserved
- // =================================================================================
-
- #pragma once
-
- #include "PLConstants.h"
- #include "ImageLight.h"
- #include "FontLight.h"
-
- class GenText {
-
- public:
- GenText (void);
- virtual ~GenText();
-
- void SetContrast (Boolean);
- void Update (FontLight &, ImageLight&);
- void MakeRoom (void);
- Handle GetText (void)
- { return mText; }
-
- protected:
- Handle mText;
- Boolean mAutoContrast;
- };
-