Skip to content

Commit

Permalink
Add IPresenter.ForceInitialize(object argument)
Browse files Browse the repository at this point in the history
  • Loading branch information
neuecc committed Jul 25, 2016
1 parent 7d5ac97 commit 2e01638
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public interface IPresenter
void InitializeCore();
void StartCapturePhase();
void Awake();
void ForceInitialize(object argument);
}

/// <summary>
Expand Down Expand Up @@ -123,6 +124,11 @@ public virtual void ForceInitialize(T argument)
Start();
}

void IPresenter.ForceInitialize(object argument)
{
ForceInitialize((T)argument);
}

void IPresenter.Awake()
{
if (isAwaken) return;
Expand Down

0 comments on commit 2e01638

Please sign in to comment.