diff options
Diffstat (limited to 'Minecraft.World/Projectile.h')
| -rw-r--r-- | Minecraft.World/Projectile.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Minecraft.World/Projectile.h b/Minecraft.World/Projectile.h new file mode 100644 index 00000000..ab6b0b05 --- /dev/null +++ b/Minecraft.World/Projectile.h @@ -0,0 +1,7 @@ +#pragma once + +class Projectile +{ +public: + virtual void shoot(double xd, double yd, double zd, float pow, float uncertainty) = 0; +};
\ No newline at end of file |
