4jcraft/Minecraft.World/Entities/Enemy.h
2026-03-05 03:29:23 -05:00

15 lines
272 B
C++

#pragma once
#include "Mobs/Creature.h"
class Level;
class Enemy : public Creature
{
public:
static const int XP_REWARD_NONE;
static const int XP_REWARD_SMALL;
static const int XP_REWARD_MEDIUM;
static const int XP_REWARD_LARGE;
static const int XP_REWARD_HUGE;
};