mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-08-08 08:22:02 +00:00
10 lines
226 B
C++
10 lines
226 B
C++
#pragma once
|
|
|
|
class MultiEntityMobPart;
|
|
|
|
class MultiEntityMob
|
|
{
|
|
public:
|
|
virtual Level *getLevel() = 0;
|
|
virtual bool hurt(shared_ptr<MultiEntityMobPart> MultiEntityMobPart, DamageSource *source, float damage) = 0;
|
|
}; |