mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-26 12:49:08 +00:00
15 lines
288 B
C++
15 lines
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
|
||
|
};
|
||
|
}
|