16 lines
211 B
C
16 lines
211 B
C
|
#ifndef LOADINGCODE_H_INCLUDED
|
||
|
#define LOADINGCODE_H_INCLUDED
|
||
|
|
||
|
#include "game_area_interface.h"
|
||
|
|
||
|
using namespace SE;
|
||
|
|
||
|
class TGameLoading : public TGameAreaAncestor
|
||
|
{
|
||
|
public:
|
||
|
virtual void Draw();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|