This commit is contained in:
Oscar
2025-05-25 18:16:55 +03:00
commit df4b259d17
551 changed files with 32089 additions and 0 deletions

4
Editor/Assembly.cs Normal file
View File

@@ -0,0 +1,4 @@
global using Sandbox;
global using Editor;
global using System.Collections.Generic;
global using System.Linq;

8
Editor/MyEditorMenu.cs Normal file
View File

@@ -0,0 +1,8 @@
public static class MyEditorMenu
{
[Menu("Editor", "$title/My Menu Option")]
public static void OpenMyMenu()
{
EditorUtility.DisplayDialog("It worked!", "This is being called from your library's editor code!");
}
}