////////////////////////////////////////////////////////////////////////// public CommandReciver(ICommandInvoker m_CommandInvoker = null, ICommandNotifier <CommandReciver> m_CommandNotifier = null) { this.m_CommandInvoker = m_CommandInvoker ?? new CommandInvokerDefault(); this.m_CommandNotifier = m_CommandNotifier ?? new CommandNotifierDefault <CommandReciver>(); this.m_CommandNotifier.iAttach(this); }
public CommandNotifierRedirect(ICommandNotifier <T> redirectionTarget) { m_RedirectionTarget = redirectionTarget; }