mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
11 lines
310 B
Haxe
11 lines
310 B
Haxe
package rewind;
|
|
|
|
import src.MarbleWorld;
|
|
|
|
interface RewindableState {
|
|
function apply(level:MarbleWorld):Void;
|
|
function clone():RewindableState;
|
|
function getSize():Int;
|
|
function serialize(rm:RewindManager, bw:haxe.io.BytesOutput):Void;
|
|
function deserialize(rm:RewindManager, br:haxe.io.BytesInput):Void;
|
|
}
|