You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
589 B
18 lines
589 B
using System; |
|
|
|
namespace Kingo.Plugin.ShapeToKOApp.XSDClass |
|
{ |
|
// Token: 0x02000012 RID: 18 |
|
public abstract class LSymbol : Symbol |
|
{ |
|
// Token: 0x17000053 RID: 83 |
|
// (get) Token: 0x060000B9 RID: 185 RVA: 0x00002F60 File Offset: 0x00001160 |
|
// (set) Token: 0x060000BA RID: 186 RVA: 0x00002F77 File Offset: 0x00001177 |
|
public int[] Color { get; set; } |
|
|
|
// Token: 0x17000054 RID: 84 |
|
// (get) Token: 0x060000BB RID: 187 RVA: 0x00002F80 File Offset: 0x00001180 |
|
// (set) Token: 0x060000BC RID: 188 RVA: 0x00002F97 File Offset: 0x00001197 |
|
public double Width { get; set; } |
|
} |
|
}
|
|
|