mirror of
https://github.com/simtactics/niotso.git
synced 2025-07-04 21:50:37 -04:00
Somewhat of a start
This commit is contained in:
commit
8a16e52bf6
66 changed files with 1872 additions and 0 deletions
0
Client/Scene/Control.hpp
Normal file
0
Client/Scene/Control.hpp
Normal file
4
Client/Scene/Scene.hpp
Normal file
4
Client/Scene/Scene.hpp
Normal file
|
@ -0,0 +1,4 @@
|
|||
class Scene {
|
||||
public:
|
||||
virtual int Logic(int Message, int ParamA, int ParamB);
|
||||
}
|
15
Client/Scene/Scenes/LoadScreen/LoadScreen.hpp
Normal file
15
Client/Scene/Scenes/LoadScreen/LoadScreen.hpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
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
|
||||
};
|
||||
}
|
0
Client/Scene/Scenes/LoadScreen/Logic.cpp
Normal file
0
Client/Scene/Scenes/LoadScreen/Logic.cpp
Normal file
0
Client/Scene/Scenes/Makefile
Normal file
0
Client/Scene/Scenes/Makefile
Normal file
Loading…
Add table
Add a link
Reference in a new issue