This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Character { | |
/** @var int the UID of this character. Corresponds to User->Character */ | |
public $UID; | |
/** @var string The Character's name */ | |
protected $aName; | |
/** @var int Character's Age in years */ | |
protected $Age; | |
/** @var string Character's Gender: M, F, or Other */ |