mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-12-04 23:22:58 +00:00
8 lines
148 B
Haxe
8 lines
148 B
Haxe
package rewind;
|
|
|
|
import src.MarbleWorld;
|
|
|
|
interface RewindableState {
|
|
function apply(level:MarbleWorld):Void;
|
|
function clone():RewindableState;
|
|
}
|