september 27th 2018 support

This commit is contained in:
recroom2016tutorial
2022-03-24 00:42:44 -04:00
parent f702725b9b
commit 2344b111d5
24 changed files with 3797 additions and 2155 deletions

23
Sanitize.cs Normal file
View File

@@ -0,0 +1,23 @@
using System;
using Newtonsoft.Json;
namespace api
{
// Token: 0x02000081 RID: 129
public class Sanitize
{
public static Sanitize.m001 GetSanitize()
{
return new m001
{
IsPure = true
};
}
public sealed class m001
{
public bool IsPure { get; set; }
}
}
}