mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-19 18:14:44 +00:00
13 lines
208 B
C++
13 lines
208 B
C++
#pragma once
|
|
|
|
#include <DXAPI/Point3F.h>
|
|
#include <DXAPI/Projectile.h>
|
|
|
|
namespace DX
|
|
{
|
|
class GrenadeProjectile : public Projectile
|
|
{
|
|
public:
|
|
GrenadeProjectile(unsigned int obj);
|
|
};
|
|
} // End NameSpace DX
|