mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-24 19:59:07 +00:00
15 lines
No EOL
288 B
C++
15 lines
No EOL
288 B
C++
class LoadScreen : public Scene {
|
|
private:
|
|
Graphics::Image Background, StatusString[9];
|
|
|
|
public:
|
|
int Logic(int Message, int ParamA, int ParamB);
|
|
int Render();
|
|
|
|
enum Message {
|
|
msg_MaxisLogo = 0x00010000,
|
|
msg_SlidingText,
|
|
msg_JobComplete,
|
|
msg_LoginSuccessful
|
|
};
|
|
} |