feature(subtitles): add frog_subtitles addon

This commit is contained in:
2025-09-23 00:16:43 +02:00
parent 6c8d542e53
commit d3eff4e006
21 changed files with 371 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
using Godot;
using Godot.Collections;
namespace Frog;
public partial class Subtitles : Resource
{
[Export] public Array<SubtitleEntry> Entries;
}