-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathClasses.cs
More file actions
30 lines (27 loc) · 699 Bytes
/
Copy pathClasses.cs
File metadata and controls
30 lines (27 loc) · 699 Bytes
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
using System;
using System.Collections.Generic;
using System.Text;
namespace BMG
{
public class Preset
{
public string display { get; set; }
public string author { get; set; }
public string social { get; set; }
public int required { get; set; }
public char[] ignoreTiles { get; set; }
public Offset defaultOffset { get; set; }
}
public class Asset
{
public Offset offset { get; set; }
}
public class Offset
{
public int top { get; set; }
public int mid { get; set; }
public int bot { get; set; }
public int left { get; set; }
public int right { get; set; }
}
}