17 lines
253 B
C#
17 lines
253 B
C#
|
|
||
|
using System.Diagnostics;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System;
|
||
|
using Godot;
|
||
|
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public class TimeLineEvent
|
||
|
{
|
||
|
public long id;
|
||
|
public bool persistent;
|
||
|
public double position;
|
||
|
}
|
||
|
}
|