fakemon/FakeMon/src/fmon/script/Action.scala

5 lines
66 B
Scala

package fmon.script
trait Action[A] {
def apply(env: A): Unit
}