jumpstart-games-reduxed/src/Schema/ContentLinkType.cs
Alan Moon 9089ea786d ContentByType, ProfileTags, WoJS Ranks and Quests
- 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
2024-03-14 20:32:57 +00:00

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
}
}