org.codetome.zircon.internal.font.FontRegionTransformer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zircon Show documentation
Show all versions of zircon Show documentation
Zircon is a terminal emulator which targets multiple GUI platforms and designed specifically for game developers.
The newest version!
package org.codetome.zircon.internal.font
import org.codetome.zircon.api.TextCharacter
import org.codetome.zircon.api.font.FontTextureRegion
/**
* Transforms a font region. A font region is a part of a
* font sprite sheet or other font source which represents a character.
*/
interface FontRegionTransformer {
/**
* Transforms a font region and returns the transformed version.
*/
fun transform(region: FontTextureRegion, textCharacter: TextCharacter): FontTextureRegion
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy