공용 코드를 위한 어셈블리 정의

This commit is contained in:
2025-10-19 00:33:01 +09:00
parent 0554d56918
commit ea8251dfc8
6 changed files with 41 additions and 1 deletions

View File

@@ -6,6 +6,6 @@ public static class CustomMenuItemDefinition
[MenuItem("Custom/Print log")]
private static void PringLog()
{
Debug.Log("Hello, world!");
Debug.Log($"Hello, world! - {SharedFunctions.Add(1, 2)}");
}
}