7 lines
164 B
Haxe
7 lines
164 B
Haxe
|
package flash.utils;
|
||
|
|
||
|
extern interface IExternalizable {
|
||
|
function readExternal(input : IDataInput) : Void;
|
||
|
function writeExternal(output : IDataOutput) : Void;
|
||
|
}
|