Files
LCERenewed/Minecraft.World/RangedAttackMob.h
T
2026-03-08 10:09:54 +01:00

7 lines
139 B
C++

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