예제 #1
0
파일: RuntimeMap.cs 프로젝트: kanbang/Colt
 private RuntimeMapLayer DeserializeLayer(MgBinaryDeserializer d)
 {
     //TODO: Review when we split to specific implementations
     RuntimeMapLayer t = new RuntimeMapLayer(this);
     t.Deserialize(d);
     return t;
 }