mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-27 21:03:36 +00:00
23 lines
380 B
C++
23 lines
380 B
C++
#pragma once
|
|
|
|
#include "app/common/Game.h"
|
|
|
|
class C4JStringTable;
|
|
|
|
class LinuxGame : public Game {
|
|
public:
|
|
LinuxGame();
|
|
|
|
void StoreLaunchData() override;
|
|
void ExitGame() override;
|
|
void FatalLoadError() override;
|
|
|
|
C4JStringTable* GetStringTable() { return nullptr; }
|
|
|
|
// original code
|
|
virtual void TemporaryCreateGameStart();
|
|
};
|
|
|
|
extern LinuxGame app;
|
|
|