1
0
mirror of synced 2024-06-18 19:07:39 +00:00
Tapeti/IControllerFactory.cs

10 lines
145 B
C#

using System;
namespace Tapeti
{
public interface IControllerFactory
{
object CreateController(Type controllerType);
}
}