mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-24 14:08:13 +05: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;
|
|
}; |