Files
gymkhana-actions/addons/frog_subtitles/resources/SubtitleEntry.cs

12 lines
219 B
C#

using Godot;
namespace Frog;
public partial class SubtitleEntry : Resource
{
[Export] public int Id;
[Export] public double StartTime;
[Export] public double EndTime;
[Export] public string Content;
}