mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-06-03 06:33:02 +00:00
7 lines
178 B
C++
7 lines
178 B
C++
#pragma once
|
|
|
|
class RangedAttackMob {
|
|
public:
|
|
virtual void performRangedAttack(std::shared_ptr<LivingEntity> target,
|
|
float power) = 0;
|
|
}; |