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 {
val int = ProgramType<Int>()
val float = ProgramType<Float>()
val string = ProgramType<String>()
}
}