mirror of
https://gitlab.com/Scribble/gdlenhanced.git
synced 2026-08-17 14:23:04 -04:00
16 lines
240 B
C++
16 lines
240 B
C++
|
|
#pragma once
|
|
|
|
#include "Ammunition.h"
|
|
|
|
class CMissileWeenie : public CAmmunitionWeenie
|
|
{
|
|
public:
|
|
CMissileWeenie();
|
|
virtual ~CMissileWeenie() override;
|
|
|
|
virtual class CMissileWeenie *AsMissile() override { return this; }
|
|
|
|
protected:
|
|
};
|
|
|