mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-17 19:23:51 +02:00
15 lines
215 B
C++
15 lines
215 B
C++
|
|
#ifndef __GAME_SKYBOX_H__
|
|
#define __GAME_SKYBOX_H__
|
|
|
|
class hhSkybox : public idEntity {
|
|
public:
|
|
CLASS_PROTOTYPE( hhSkybox );
|
|
|
|
void Spawn(void);
|
|
|
|
virtual void Present( void );
|
|
};
|
|
|
|
#endif /* __GAME_SKYBOX_H__ */
|