Faucet/Minecraft.World/Enemy.h
2026-03-09 16:37:23 +11:00

22 lines
491 B
C++

#pragma once
#include "Creature.h"
#include "EntitySelector.h"
class Enemy : public Creature
{
public:
class EnemyEntitySelector : public EntitySelector
{
bool matches(shared_ptr<Entity> entity) const;
};
static const int XP_REWARD_NONE = 0;
static const int XP_REWARD_SMALL = 3;
static const int XP_REWARD_MEDIUM = 5;
static const int XP_REWARD_LARGE = 10;
static const int XP_REWARD_HUGE = 20;
static const int XP_REWARD_BOSS = 50;
static EntitySelector *ENEMY_SELECTOR;
};