All Downloads are FREE. Search and download functionalities are using the official Maven repository.

games.rednblack.h2d.extension.typinglabel.TypingLabelComponent Maven / Gradle / Ivy

There is a newer version: 0.1.4
Show newest version
package games.rednblack.h2d.extension.typinglabel;

import com.artemis.PooledComponent;
import com.rafaskoberg.gdx.typinglabel.TypingLabel;

public class TypingLabelComponent extends PooledComponent {

    public transient TypingLabel typingLabel;

    @Override
    public void reset() {
        if (typingLabel != null)
            typingLabel.remove();
        typingLabel = null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy