ASMR/src/main/kotlin/net/shadowfacts/asmr/program/ProgramType.kt

12 lines
227 B
Kotlin
Raw Normal View History

2019-08-09 01:44:59 +00:00
package net.shadowfacts.asmr.program
/**
* @author shadowfacts
*/
2019-08-12 00:05:09 +00:00
class ProgramType<Type: Any> {
2019-08-09 01:44:59 +00:00
companion object {
2019-08-09 02:44:19 +00:00
val INT = ProgramType<Int>()
val FLOAT = ProgramType<Float>()
val STRING = ProgramType<String>()
2019-08-09 01:44:59 +00:00
}
}