10 lines
224 B
C#
10 lines
224 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace DDD
|
||
|
{
|
||
|
public interface IInteractionSubsystemOwner
|
||
|
{
|
||
|
public bool TryGetSubsystemObject<T>(out IInteractionSubsystemObject<T> subsystemObject) where T : Enum;
|
||
|
}
|
||
|
}
|