7 lines
147 B
TypeScript
7 lines
147 B
TypeScript
import {State} from "./State";
|
|
import {SimpleTransition} from "./SimpleTransition";
|
|
|
|
export class SimpleState extends State<SimpleTransition> {
|
|
|
|
}
|