14 lines
230 B
C#
14 lines
230 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text.RegularExpressions;
|
||
|
using System.Text;
|
||
|
using Godot;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public class KeyFrame<T>
|
||
|
{
|
||
|
public float time;
|
||
|
public T data;
|
||
|
}
|
||
|
}
|