mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 07:43:37 +00:00
7 lines
157 B
C++
7 lines
157 B
C++
#pragma once
|
|
|
|
class Projectile {
|
|
public:
|
|
virtual void shoot(double xd, double yd, double zd, float pow,
|
|
float uncertainty) = 0;
|
|
}; |