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

12 lines
222 B
Kotlin
Raw Normal View History

2019-08-09 01:44:59 +00:00
package net.shadowfacts.asmr.program
/**
* @author shadowfacts
*/
class ProgramType<Type> {
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
}
}