mirror of
https://github.com/Patoke/LCERenewed.git
synced 2026-07-17 19:27:04 +00:00
7 lines
137 B
C++
7 lines
137 B
C++
#pragma once
|
|
|
|
class Projectile
|
|
{
|
|
public:
|
|
virtual void shoot(double xd, double yd, double zd, float pow, float uncertainty) = 0;
|
|
}; |