mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-26 16:03:09 +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;
|
|
}; |