using Godot; using System.Reflection; using System.Collections.Generic; namespace Rokojori { [Tool] [GlobalClass] public abstract partial class UVSource:Resource { public abstract List GetUV( ShaderGenerationContext context, string target, int offsetIndex ); } }