9 lines
165 B
C#
9 lines
165 B
C#
using FileTime.Core.Timeline;
|
|
|
|
namespace FileTime.Core.Command
|
|
{
|
|
public interface ICommand
|
|
{
|
|
PointInTime SimulateCommand(PointInTime moment);
|
|
}
|
|
} |