15 lines
298 B
C#
15 lines
298 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using UniRx;
|
|
using UnityEngine;
|
|
|
|
namespace Ichni.Editor
|
|
{
|
|
public class TimePointer : MonoBehaviour
|
|
{
|
|
public TMP_Text intervalUnitText;
|
|
public float time;
|
|
public int index;
|
|
}
|
|
} |