aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/util/IntUtil.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/util/IntUtil.kt')
-rw-r--r--src/main/kotlin/util/IntUtil.kt12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/kotlin/util/IntUtil.kt b/src/main/kotlin/util/IntUtil.kt
new file mode 100644
index 0000000..2695906
--- /dev/null
+++ b/src/main/kotlin/util/IntUtil.kt
@@ -0,0 +1,12 @@
+package moe.nea.firmament.util
+
+object IntUtil {
+ data class RGBA(val r: Int, val g: Int, val b: Int, val a: Int)
+
+ fun Int.toRGBA(): RGBA {
+ return RGBA(
+ r = (this shr 16) and 0xFF, g = (this shr 8) and 0xFF, b = this and 0xFF, a = (this shr 24) and 0xFF
+ )
+ }
+
+}