示例#1
0
            public static FirstCommandResponse Deserialize(global::Improbable.Worker.Core.SchemaObject obj)
            {
                var instance = new FirstCommandResponse();

                instance.Response = obj.GetBool(1);
                return(instance);
            }
示例#2
0
        public static FirstCommandResponse ToNative(global::Improbable.Gdk.Tests.BlittableTypes.FirstCommandResponse spatialType)
        {
            var nativeType = new FirstCommandResponse();

            nativeType.Response = spatialType.response;
            return(nativeType);
        }
示例#3
0
 public static void Serialize(FirstCommandResponse instance, global::Improbable.Worker.Core.SchemaObject obj)
 {
     obj.AddBool(1, instance.Response);
 }