Skip to content

Instantly share code, notes, and snippets.

@wmiller
Created February 3, 2014 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wmiller/8792488 to your computer and use it in GitHub Desktop.
Save wmiller/8792488 to your computer and use it in GitHub Desktop.
XML Database AssetBundleInfo.cs
using UnityEngine;
using System.Collections;
using System.IO;
using System.Text;
using System.Xml;
using System.Xml.Serialization;
[XmlRoot("AssetBundleInfo")]
public sealed class AssetBundleInfo : DatabaseEntry
{
[XmlElement]
public string Name { get; private set; }
[XmlElement]
public string URL { get; private set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment