Files
MCLEClient/Minecraft.World/RangedAttackMob.h
T
2026-05-12 20:57:36 -04:00

7 lines
133 B
C++

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