mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
22 lines
482 B
Java
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;
|
|
}
|
|
|
|
} |