using UnityEngine; using System.Collections; using System.Collections.Generic; using System.Reflection; namespace Gaia { /// /// Gaia compatible extension package /// public class GaiaCompatiblePackage { /// /// Package name /// public string m_packageName; /// /// The description of this package /// public string m_packageDescription; /// /// The image for this package /// public string m_packageImageName; /// /// The URL for this package /// public string m_packageURL; /// /// Whether or not it has been installed /// public bool m_isCompatible; /// /// Whether or not it has been installed /// public bool m_isInstalled; /// /// Are we folded out in the intalled tab /// public bool m_installedFoldedOut; /// /// Are we folded out in the compatible tab /// public bool m_compatibleFoldedOut; /// /// Extension methods /// public List m_methods = new List(); /// /// Extension method foldouts /// public Dictionary m_methodGroupFoldouts = new Dictionary(); } }