14 lines
206 B
C#
14 lines
206 B
C#
|
using Godot;
|
||
|
using System.Reflection;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public class MusicTimeLineRange
|
||
|
{
|
||
|
public double start;
|
||
|
public double end;
|
||
|
}
|
||
|
|
||
|
}
|