/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/hbm/animloader/AnimationController.java
22 строки
482 B
Boblet
transition seal (well most of it)
03 фев 2022, 17:39
03 фев 2022, 17:39
f222672
Код
Авторство
О чём код?
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; } }