Example #1
0
            public static ComponentIcon Deserialize(global::Improbable.Worker.CInterop.SchemaObject obj)
            {
                var instance = new ComponentIcon();

                {
                    instance.IconName = obj.GetString(1);
                }

                return(instance);
            }
Example #2
0
 public static void Serialize(ComponentIcon instance, global::Improbable.Worker.CInterop.SchemaObject obj)
 {
     {
         obj.AddString(1, instance.IconName);
     }
 }