Add project files.

This commit is contained in:
Tucker
2022-02-18 16:08:20 -05:00
parent abd3362d42
commit 230917eb75
22 changed files with 1429 additions and 0 deletions

18
LevelProgressionEntry.cs Normal file
View File

@@ -0,0 +1,18 @@
using System;
namespace api
{
// Token: 0x02000017 RID: 23
public class LevelProgressionEntry
{
// Token: 0x1700001E RID: 30
// (get) Token: 0x06000070 RID: 112 RVA: 0x000022F2 File Offset: 0x000004F2
// (set) Token: 0x06000071 RID: 113 RVA: 0x000022FA File Offset: 0x000004FA
public int Level { get; set; }
// Token: 0x1700001F RID: 31
// (get) Token: 0x06000072 RID: 114 RVA: 0x00002303 File Offset: 0x00000503
// (set) Token: 0x06000073 RID: 115 RVA: 0x0000230B File Offset: 0x0000050B
public int RequiredXp { get; set; }
}
}