diff options
Diffstat (limited to 'src/main/kotlin/com/dulkirfabric/util/render/GlowingEntityInterface.kt')
-rw-r--r-- | src/main/kotlin/com/dulkirfabric/util/render/GlowingEntityInterface.kt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/kotlin/com/dulkirfabric/util/render/GlowingEntityInterface.kt b/src/main/kotlin/com/dulkirfabric/util/render/GlowingEntityInterface.kt new file mode 100644 index 0000000..3033d19 --- /dev/null +++ b/src/main/kotlin/com/dulkirfabric/util/render/GlowingEntityInterface.kt @@ -0,0 +1,11 @@ +package com.dulkirfabric.util.render + +import java.awt.Color + +interface GlowingEntityInterface { + fun setDulkirEntityGlow(shouldGlow: Boolean = false, glowColor: Color) + + fun shouldDulkirEntityGlow() : Boolean + + fun getDulkirEntityGlowColor() : Color? +}
\ No newline at end of file |