mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-23 03:38:12 +05:00
10 lines
232 B
C++
10 lines
232 B
C++
#include "stdafx.h"
|
|
#include "Enemy.h"
|
|
|
|
|
|
|
|
const int Enemy::XP_REWARD_NONE = 0;
|
|
const int Enemy::XP_REWARD_SMALL = 3;
|
|
const int Enemy::XP_REWARD_MEDIUM = 5;
|
|
const int Enemy::XP_REWARD_LARGE = 10;
|
|
const int Enemy::XP_REWARD_HUGE = 20; |