mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-06-01 07:34:36 +00:00
7 lines
131 B
C++
7 lines
131 B
C++
#pragma once
|
|
|
|
class Projectile
|
|
{
|
|
public:
|
|
virtual void shoot(double xd, double yd, double zd, float pow, float uncertainty) = 0;
|
|
}; |