9 lines
253 B
C#
9 lines
253 B
C#
//$ Copyright 2015-22, Code Respawn Technologies Pvt Ltd - All Rights Reserved $//
|
|
namespace DungeonArchitect.Flow.Domains
|
|
{
|
|
public interface IFlowDomain
|
|
{
|
|
System.Type[] SupportedTasks { get; }
|
|
string DisplayName { get; }
|
|
}
|
|
} |