9 lines
145 B
C#
9 lines
145 B
C#
using System;
|
|
|
|
namespace EventSystem.Runtime
|
|
{
|
|
public class TimeSignals
|
|
{
|
|
public static event Action<int> OnTimeChanged;
|
|
}
|
|
}
|