14 lines
237 B
C#
14 lines
237 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using UnityEngine;
|
|
|
|
namespace BangerTypes
|
|
{
|
|
[Serializable]
|
|
public class Note
|
|
{
|
|
public float t; // Time
|
|
public string a; // Arrow type
|
|
}
|
|
} |