mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-12-02 22:23:10 +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;
|
|
}
|