mirror of
https://gitlab.com/Scribble/gdlenhanced.git
synced 2026-08-17 14:23:04 -04:00
15 lines
246 B
C++
15 lines
246 B
C++
#ifndef GAME_H
|
|
#define GAME_H
|
|
|
|
#include "WeenieObject.h"
|
|
|
|
class GameWeenie : public CWeenieObject
|
|
{
|
|
public:
|
|
GameWeenie* AsGame() override { return this; }
|
|
|
|
void PostSpawn() override;
|
|
void NotifyRemoveFromWorld() override;
|
|
};
|
|
|
|
#endif // GAME_H
|