mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-12 22:56:06 +09:00
18 lines
339 B
Kotlin
18 lines
339 B
Kotlin
package net.torvald.colourutil
|
|
|
|
import com.badlogic.gdx.graphics.Color
|
|
|
|
/**
|
|
* Created by minjaesong on 2016-02-11.
|
|
*/
|
|
interface LimitedColours {
|
|
|
|
fun createGdxColor(raw: Int): Color
|
|
fun createGdxColor(r: Int, g: Int, b: Int): Color
|
|
|
|
fun create(raw: Int)
|
|
fun create(r: Int, g: Int, b: Int)
|
|
|
|
fun toGdxColour(): Color
|
|
}
|