GameFramework.SkillStateInfo.RemoveAllImpact C# (CSharp) Method

RemoveAllImpact() public method

public RemoveAllImpact ( ) : void
return void
        public void RemoveAllImpact()
        {
            m_ImpactList.Clear();
            m_BuffChanged = true;
        }

Usage Example

 static public int RemoveAllImpact(IntPtr l)
 {
     try {
         GameFramework.SkillStateInfo self = (GameFramework.SkillStateInfo)checkSelf(l);
         self.RemoveAllImpact();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }