Add UhkArray. Don't dump arrays.

This commit is contained in:
László Monda
2016-04-03 01:25:07 +02:00
parent 7841779b46
commit 2b91aa3152
4 changed files with 13 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
abstract class UhkArray<T> extends Serializable<T> {
abstract _fromJsObject(jsObject: any): T;
abstract _fromBinary(buffer: UhkBuffer): T;
abstract _toJsObject(): any;
abstract _toBinary(buffer: UhkBuffer): void;
}