Esempio n. 1
0
 public CCubeData() : base()
 {
     this.classType  = CEnum.EClassType.None;
     this.moveSpeed  = 0f;
     this.seekRadius = 0f;
     this.token      = string.Empty;
 }
Esempio n. 2
0
        public CCharacterData() : base()
        {
            this.classType = CEnum.EClassType.None;

            this.attackableObjectTypes = new int[0];

            this.currentSanity = 0;
            this.maxSanity     = 0;
            this.currentHunger = 0;
            this.maxHunger     = 0;

            this.attackRange  = 0f;
            this.attackSpeed  = 0f;
            this.attackDamage = 0;

            this.physicDefend = 0;

            this.moveSpeed = 0f;

            this.seekRadius = 0f;

            this.token = string.Empty;
        }
Esempio n. 3
0
 public override void SetClassType(CEnum.EClassType value)
 {
     base.SetClassType(value);
     m_Data.classType = value;
 }
Esempio n. 4
0
 public virtual void SetClassType(CEnum.EClassType value)
 {
 }