Files
2026-05-14 19:16:33 -04:00

7 lines
133 B
C++

#pragma once
class RangedAttackMob
{
public:
virtual void performRangedAttack(shared_ptr<LivingEntity> target, float power) = 0;
};