mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-16 08:10:32 +02:00
14 lines
178 B
C++
14 lines
178 B
C++
|
|
#ifndef __GAME_NOTE_H__
|
|
#define __GAME_NOTE_H__
|
|
|
|
class hhNote : public hhConsole {
|
|
public:
|
|
CLASS_PROTOTYPE( hhNote );
|
|
|
|
void Spawn( void );
|
|
};
|
|
|
|
|
|
#endif /* __GAME_NOTE_H__ */
|