16 lines
296 B
Kotlin
16 lines
296 B
Kotlin
package ru.dbotthepony.kstarbound.util
|
|
|
|
class RenderDirectives(val raw: String) {
|
|
override fun equals(other: Any?): Boolean {
|
|
return super.equals(other)
|
|
}
|
|
|
|
override fun hashCode(): Int {
|
|
return super.hashCode()
|
|
}
|
|
|
|
override fun toString(): String {
|
|
return "RenderDirectives[$raw]"
|
|
}
|
|
}
|