Implemented HandleThrow in match and added some fonction in Character

and ThrowPart
This commit is contained in:
Rémi Rativel
2021-06-09 17:45:09 +02:00
parent d152b2c0aa
commit 0d929b67ca
3 changed files with 61 additions and 3 deletions

View File

@ -87,4 +87,12 @@ public class ThrowPart {
public void setisActive(boolean isActive) {
this.isActive = isActive;
}
public void clone(ThrowPart tP) {
this.hasHit = tP.hasHit();
this.hitstun = tP.getHitstun();
this.frames = tP.getFrames();
this.knockbackOnHit = tP.getKnockbackOnHit();
this.damage = tP.getDamage();
}
}