Files
FileTime/src/Core/FileTime.Core/Command/ICommand.cs
2022-01-07 12:03:56 +01:00

9 lines
165 B
C#

using FileTime.Core.Timeline;
namespace FileTime.Core.Command
{
public interface ICommand
{
PointInTime SimulateCommand(PointInTime moment);
}
}