diff options
author | piernov <piernov@piernov.org> | 2016-05-08 20:39:15 +0200 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2016-05-08 20:39:15 +0200 |
commit | 07f9658d2fecc5f88cc27fba8502246a30d8fdc0 (patch) | |
tree | befcdc30b6a093372a356e96d5073a2b961b2379 /inc/Monster.inc | |
parent | faefddcb8b3d3ac491331b702f8a8ac6fe58a894 (diff) | |
download | candybox-07f9658d2fecc5f88cc27fba8502246a30d8fdc0.tar.gz candybox-07f9658d2fecc5f88cc27fba8502246a30d8fdc0.tar.bz2 candybox-07f9658d2fecc5f88cc27fba8502246a30d8fdc0.tar.xz candybox-07f9658d2fecc5f88cc27fba8502246a30d8fdc0.zip |
Add @package and various fixes
Diffstat (limited to 'inc/Monster.inc')
-rw-r--r-- | inc/Monster.inc | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/inc/Monster.inc b/inc/Monster.inc index 4450b59..d8fe619 100644 --- a/inc/Monster.inc +++ b/inc/Monster.inc @@ -2,37 +2,38 @@ /** * Represent an Item in the shop or in the Inventory. * + * @package inc\Monster.inc * @author Alexandre Renoux * @author Pierre-Emmanuel Novac */ class Monster { /** - * Name of the Monster. + * @var string Name of the Monster. */ public $name = ""; /** - * Monster's icon. + * @var string Monster's icon. */ public $icon = ""; /** - * Monster's description. + * @var desc Monster's description. */ public $desc = ""; // TODO: unused /** - * HP of the Monster. + * @var int HP of the Monster. */ public $hp = 1; /** - * Exp given by this monster. + * @var int Exp given by this monster. */ public $xp = 0; /** - * Monster's level. + * @var int Monster's level. */ public $level = 1; |