backend refactor yay!!! 1.4.0
This commit is contained in:
21
Core/AssetChanges/AGRoomChanges.cs
Normal file
21
Core/AssetChanges/AGRoomChanges.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace undead_universal_patch_il2cpp.Core.AssetChanges;
|
||||
|
||||
public class RecChange
|
||||
{
|
||||
[JsonPropertyName("Key")]
|
||||
public string RecKey { get; set; }
|
||||
|
||||
[JsonPropertyName("Value")]
|
||||
public dynamic RecValue { get; set; }
|
||||
}
|
||||
|
||||
public static class AGRoomChanges
|
||||
{
|
||||
public static string name = "AGRoomObjectChanges";
|
||||
public static DediConfig<Dictionary<string, List<RecChange>>> config = new(name, "[]", null);
|
||||
}
|
||||
Reference in New Issue
Block a user