mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00

* add support for old missions API (aka "steps missions") * config option to disable loading non SoD Data (used only for missions and achievements for now) * make AuthenticateUser endpoint compatible with games that use e-mail as login * add api keys for lands * add GetGameCurrency endpoint * allow create empty stores and add store "8" (empty) --------- Co-authored-by: Robert Paciorek <robert@opcode.eu.org>
13 lines
242 B
C#
13 lines
242 B
C#
using System.Xml.Serialization;
|
|
|
|
[XmlRoot(ElementName = "World", Namespace = "")]
|
|
[Serializable]
|
|
public class World
|
|
{
|
|
[XmlElement(ElementName = "Scene")]
|
|
public string Scene;
|
|
|
|
[XmlElement(ElementName = "ID")]
|
|
public int ID;
|
|
}
|