12 lines
260 B
C#
12 lines
260 B
C#
using FileTime.Core.Timeline;
|
|
|
|
namespace FileTime.Core.Command
|
|
{
|
|
public class CreateContainerCommand : ICommand
|
|
{
|
|
public PointInTime SimulateCommand(PointInTime delta)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |