mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-22 07:02:54 +00:00
7 lines
178 B
C++
7 lines
178 B
C++
#pragma once
|
|
|
|
class RangedAttackMob {
|
|
public:
|
|
virtual void performRangedAttack(std::shared_ptr<LivingEntity> target,
|
|
float power) = 0;
|
|
}; |