/// <summary> /// Load from XML element. /// </summary> public bool Load(Urho.Resources.XmlElement element, Urho.Urho2D.TileMapInfo2D info) { Runtime.ValidateRefCounted(this); return(TmxImageLayer2D_Load(handle, ref element, ref info)); }
internal static extern bool TmxImageLayer2D_Load(IntPtr handle, ref Urho.Resources.XmlElement element, ref Urho.Urho2D.TileMapInfo2D info);
internal static extern bool TmxObjectGroup2D_Load(IntPtr handle, IntPtr element, ref Urho.Urho2D.TileMapInfo2D info);
/// <summary> /// Load from XML element. /// </summary> public bool Load(XmlElement element, Urho.Urho2D.TileMapInfo2D info) { Runtime.ValidateRefCounted(this); return(TmxObjectGroup2D_Load(handle, (object)element == null ? IntPtr.Zero : element.Handle, ref info)); }
internal static extern bool TmxTileLayer2D_Load(IntPtr handle, IntPtr element, ref Urho.Urho2D.TileMapInfo2D info);