to internal

This commit is contained in:
raiti-chan 2022-12-18 18:55:27 +09:00
parent 3cddbb0ad8
commit edab9da269
2 changed files with 2 additions and 3 deletions

View File

@ -2,10 +2,9 @@
using System.Collections.Immutable; using System.Collections.Immutable;
using VRC.SDK3.Avatars.ScriptableObjects; using VRC.SDK3.Avatars.ScriptableObjects;
// ReSharper disable once CheckNamespace
namespace nadena.dev.modular_avatar.core.editor namespace nadena.dev.modular_avatar.core.editor
{ {
public static class ClonedMenuMappings internal static class ClonedMenuMappings
{ {
private static readonly Dictionary<VRCExpressionsMenu, ImmutableList<VRCExpressionsMenu>> ClonedMappings = private static readonly Dictionary<VRCExpressionsMenu, ImmutableList<VRCExpressionsMenu>> ClonedMappings =
new Dictionary<VRCExpressionsMenu, ImmutableList<VRCExpressionsMenu>>(); new Dictionary<VRCExpressionsMenu, ImmutableList<VRCExpressionsMenu>>();

View File

@ -8,7 +8,7 @@ using static VRC.SDK3.Avatars.ScriptableObjects.VRCExpressionsMenu.Control;
namespace nadena.dev.modular_avatar.core.editor namespace nadena.dev.modular_avatar.core.editor
{ {
public class MenuTree internal class MenuTree
{ {
public struct ChildElement public struct ChildElement
{ {