mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-28 13:25:13 +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;
|
|
}; |