mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-24 17:48:55 +05:00
15 lines
267 B
C++
15 lines
267 B
C++
#pragma once
|
|
#include "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;
|
|
};
|