-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFace.cs
More file actions
29 lines (28 loc) · 714 Bytes
/
Face.cs
File metadata and controls
29 lines (28 loc) · 714 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RagemakerToPDF
{
class Face : RageItem
{
/*
* <Face>
<itemx>13.5</itemx>
<itemy>67</itemy>
<facename>Neutral/37.png</facename>
<scalex>0.6868686868686867</scalex>
<scaley>0.6868686868686867</scaley>
<mirrored>true</mirrored>
<rotation>0</rotation>
<opacity>1</opacity>
</Face>
*
*/
public string file = "";
public float scalex = 0.0f;
public float scaley = 0.0f;
public bool mirrored = false;
}
}