Files
cafeberry/Minecraft.World/RangedAttackMob.h
T
2026-07-03 18:34:01 +01:00

7 lines
139 B
C++

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