Created
February 3, 2014 21:11
-
-
Save wmiller/8792488 to your computer and use it in GitHub Desktop.
XML Database AssetBundleInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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