-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathSimplexProjectStructure.cs
More file actions
58 lines (50 loc) · 1.77 KB
/
Copy pathSimplexProjectStructure.cs
File metadata and controls
58 lines (50 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml.Serialization;
using Microsoft.Xna.Framework;
using Newtonsoft.Json;
namespace SimplexCore
{
public class SimplexProjectStructure
{
public SimplexProjectInfo Info { get; set; }
public List<SimplexProjectItem> Objects { get; set; }
public List<SimplexProjectItem> Rooms { get; set; }
public List<SimplexProjectItem> Sprites { get; set; }
public List<SimplexProjectItem> Tilesets { get; set; }
public List<SimplexProjectItem> Sounds { get; set; }
public List<SimplexProjectItem> Shaders { get; set; }
public List<SimplexProjectItem> Extensions { get; set; }
public List<SimplexProjectItem> Scripts { get; set; }
public List<SimplexProjectItem> Paths { get; set; }
public List<SimplexProjectItem> DataFiles { get; set; }
public List<SimplexProjectItem> Videos { get; set; }
[XmlIgnore]
[JsonIgnore]
public string[] Parts { get; set; }
[JsonIgnore]
[XmlIgnore]
public string RootPath { get; set; }
[JsonIgnore]
[XmlIgnore]
public string ProjectPath { get; set; }
[XmlIgnore]
public List<Type> RoomTypes;
}
public class SimplexProjectItem
{
public string name { get; set; }
public string path { get; set; }
public string tag { get; set; }
public System.Drawing.Color tagColor { get; set; }
public System.Drawing.Color nameColor { get; set; }
}
public class SimplexProjectInfo
{
public float EngineVersion { get; set; }
public string Author { get; set; }
public float ProjectVersion { get; set; }
public string ProjectLoadMessage { get; set; }
}
}