mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 09:35:34 +00:00
15 lines
239 B
C#
15 lines
239 B
C#
#if TOOLS
|
|
using Godot;
|
|
|
|
namespace Cirno.Scripts.Editor;
|
|
|
|
[Tool]
|
|
public partial class CreateWeapon : EditorScript
|
|
{
|
|
// Called when the script is executed (using File -> Run in Script Editor).
|
|
public override void _Run()
|
|
{
|
|
|
|
}
|
|
}
|
|
#endif
|