Hbm-s-Nuclear-Tech-GIT/src/main/java/com/hbm/animloader/AnimationController.java
2022-02-03 15:39:49 +01:00

22 lines
482 B
Java

package com.hbm.animloader;
public class AnimationController {
//Drillgon200: You know what? I'm pretty sure this class is entirely pointless and just acts as a stupid getter/setter for the wrapper.
//TODO delete
protected AnimationWrapper activeAnim = AnimationWrapper.EMPTY;
public void setAnim(AnimationWrapper w) {
activeAnim = w;
}
public void stopAnim() {
activeAnim = AnimationWrapper.EMPTY;
}
public AnimationWrapper getAnim() {
return activeAnim;
}
}