2025-06-10 13:16:36 +00:00
|
|
|
using Godot;
|
|
|
|
using System.Reflection;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Rokojori
|
|
|
|
{
|
2025-09-17 08:25:03 +00:00
|
|
|
|
2025-06-10 13:16:36 +00:00
|
|
|
[Tool]
|
|
|
|
[GlobalClass]
|
2025-09-17 08:25:03 +00:00
|
|
|
public abstract partial class StencilReference:Resource
|
2025-06-10 13:16:36 +00:00
|
|
|
{
|
2025-09-17 08:25:03 +00:00
|
|
|
public abstract int GetReferenceIndex();
|
2025-06-10 13:16:36 +00:00
|
|
|
}
|
|
|
|
}
|