This commit is contained in:
CortexCore
2025-02-24 23:02:49 +08:00
parent 9775bdd099
commit b07ae4fea7
82 changed files with 1021 additions and 386 deletions

View File

@@ -17,6 +17,11 @@ namespace Net.Project.B.WorldNode
[SerializeReference, SubclassSelector]
#endif
private IReference itemPath;
public string ItemPath => itemPath.Value;
public string ItemPath
{
get => itemPath.Value;
set => itemPath = new Reference(value);
}
}
}