Skip to content

Commit 8eac20f

Browse files
committed
first commit
0 parents  commit 8eac20f

File tree

203 files changed

+2936
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+2936
-0
lines changed

.vs/ImgGen/v14/.suo

46 KB
Binary file not shown.

Attribute.cs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
namespace ImgGen
2+
{
3+
using System;
4+
5+
public enum Attribute
6+
{
7+
ATTRIBUTE_DARK = 0x20,
8+
ATTRIBUTE_DEVINE = 0x40,
9+
ATTRIBUTE_EARTH = 1,
10+
ATTRIBUTE_FIRE = 4,
11+
ATTRIBUTE_LIGHT = 0x10,
12+
ATTRIBUTE_WATER = 2,
13+
ATTRIBUTE_WIND = 8
14+
}
15+
}
16+

Data.cs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
namespace ImgGen
2+
{
3+
using System;
4+
using System.Runtime.InteropServices;
5+
6+
[StructLayout(LayoutKind.Sequential)]
7+
public struct Data
8+
{
9+
public int code;
10+
public int alias;
11+
public int setcode;
12+
public int type;
13+
public int level;
14+
public int attribute;
15+
public int race;
16+
public int attack;
17+
public int defence;
18+
}
19+
}
20+

0 commit comments

Comments
 (0)