mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-17 11:00:38 +02:00
20 lines
358 B
C++
20 lines
358 B
C++
#ifndef __GAME_DOCKEDGUN_H__
|
|
#define __GAME_DOCKEDGUN_H__
|
|
|
|
//==========================================================================
|
|
//
|
|
// hhDockedGun
|
|
//
|
|
//==========================================================================
|
|
|
|
class hhDockedGun : public hhShuttle {
|
|
CLASS_PROTOTYPE( hhDockedGun );
|
|
|
|
public:
|
|
void Spawn();
|
|
|
|
protected:
|
|
};
|
|
|
|
#endif
|