mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-21 03:52:54 +00:00
18 lines
329 B
C++
18 lines
329 B
C++
#pragma once
|
|
|
|
class WindowsGame : public Game {
|
|
public:
|
|
WindowsGame();
|
|
|
|
virtual void StoreLaunchData();
|
|
virtual void ExitGame();
|
|
virtual void FatalLoadError();
|
|
|
|
C4JStringTable* GetStringTable() { return nullptr; }
|
|
|
|
// original code
|
|
virtual void TemporaryCreateGameStart();
|
|
};
|
|
|
|
extern WindowsGame app;
|