Code cleanup.

This commit is contained in:
2023-02-17 21:13:19 +08:00
parent 6a648c2dcd
commit 36dddea4d9
2 changed files with 4 additions and 5 deletions

View File

@@ -233,8 +233,8 @@ namespace Cryville.Crtr.Event {
#region ISkinnableGroup
public abstract string TypeName { get; }
public SkinContext SkinContext { get; set; }
public Anchor OpenedAnchor { get; set; }
public SkinContext SkinContext { get; private set; }
public Anchor OpenedAnchor { get; private set; }
public bool TryGetAnchorsByName(int name, out IReadOnlyCollection<Anchor> result) {
List<Anchor> anchors;
var ret = Anchors.TryGetValue(name, out anchors);