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