1
0
mirror of synced 2024-06-30 15:57:39 +00:00
Tapeti/IControllerFactory.cs

10 lines
145 B
C#
Raw Normal View History

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