v2/v3 clipboard support
This commit is contained in:
14
CustomizePlus/Configuration/Data/Version2/Version2Profile.cs
Normal file
14
CustomizePlus/Configuration/Data/Version2/Version2Profile.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace CustomizePlus.Configuration.Data.Version2;
|
||||
|
||||
[Serializable]
|
||||
public class Version2Profile
|
||||
{
|
||||
public static Dictionary<string, bool> BoneVisibility = new();
|
||||
public string CharacterName { get; set; } = string.Empty;
|
||||
public string ScaleName { get; set; } = string.Empty;
|
||||
public bool BodyScaleEnabled { get; set; } = true;
|
||||
public Dictionary<string, V2BoneEditsContainer> Bones { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user