Example #1
0
 public void CheckHP()
 {
     if (curHP.data > maxHP.data)
     {
         // HP correction
         curHP.Set(maxHP.data);
     }
 }