mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-20 02:24:46 +00:00
17 lines
284 B
C++
17 lines
284 B
C++
#pragma once
|
|
|
|
#include <DXAPI/GameBase.h>
|
|
|
|
namespace DX
|
|
{
|
|
class Projectile : public GameBase
|
|
{
|
|
public:
|
|
Projectile(unsigned int obj);
|
|
|
|
//! Velocity. It is constant because modifying it directly breaks the sim.
|
|
const Point3F velocity;
|
|
|
|
bool &hidden;
|
|
};
|
|
} // End NameSpace DX
|