修复无法将子角色重置修改为根角色的bug

This commit is contained in:
piexlmax
2022-10-29 20:26:45 +08:00
parent e46eecfc8e
commit c300e16de9
5 changed files with 104 additions and 127 deletions

View File

@@ -0,0 +1,5 @@
package utils
func Pointer[T any](in T) (out *T) {
return &in
}