forked from SoDOff-Project/sodoff
- Add ``UserProfileTag`` Placeholder - Add Placeholder Profile Tags - Reimplement ``GetContentByTypeByUser`` - Fix ``GetContentByTypeByUser`` - Add Test Movie Theater Content - Add Real Movie Content - Add Big Cat - Fix CatURL - Add Arcade Content - Add Proper Response For Arcade Content - Replace ContentInfo With ContentInfoData - Still Trying Arcade Things - Update Jukebox - Movie Theater Thumbnails - Replace All Content And MMO URL's To Point To New Server - Replace https With http And Do Similar Action To ``allranks_wojs`` - Fix Typo - Add All Other MainStreet Missions - Add WoJS Ranks - Add Learning Content (Brain Arcade) - Restore Original Jukebox Content - Add External Games And Fruit Salad Chop To Arcade Content - Update Learning Content
18 lines
318 B
C#
18 lines
318 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema
|
|
{
|
|
public enum ContentLinkType
|
|
{
|
|
[XmlEnum("0")]
|
|
Unknown,
|
|
[XmlEnum("1")]
|
|
OggSound,
|
|
[XmlEnum("2")]
|
|
OggMovie,
|
|
[XmlEnum("3")]
|
|
UnityWebPlayer,
|
|
[XmlEnum("4")]
|
|
UnityLevel
|
|
}
|
|
} |