mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-11 19:53:52 +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;
|
||
|
|
};
|