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; |