1
0
mirror of https://github.com/SirusDoma/VoxCharger.git synced 2024-12-18 02:15:55 +01:00
VoxCharger/Sources/Events/Event.cs

22 lines
416 B
C#
Raw Normal View History

2020-04-18 22:24:48 +02:00
using System;
using System.Collections;
using System.Collections.Generic;
namespace VoxCharger
{
public abstract partial class Event
{
public Time Time { get; set; }
protected Event(Time time)
{
Time = new Time(time.Measure, time.Beat, time.Offset);
}
public override string ToString()
{
return Time.ToString();
}
}
}