mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 12:23:07 +00:00
7 lines
139 B
C++
7 lines
139 B
C++
#pragma once
|
|
|
|
class RangedAttackMob
|
|
{
|
|
public:
|
|
virtual void performRangedAttack(shared_ptr<LivingEntity> target, float power) = 0;
|
|
}; |