コード例 #1
0
ファイル: Suburbia.cs プロジェクト: Nemikolh/suburbia
    private Suburbia()
    {
        m_eventBus = new EventBus();

        m_eventBus.AddHandler(EventEndOfTurn.TYPE, this);
        m_eventBus.AddHandler(EventLastTurn.TYPE, this);
        m_eventBus.AddHandler(EventEndOfGame.TYPE, this);
    }
コード例 #2
0
ファイル: Suburbia.cs プロジェクト: dpekar/suburbia
    private Suburbia()
    {
        m_eventBus = new EventBus ();

        m_eventBus.AddHandler(EventEndOfTurn.TYPE, this);
        m_eventBus.AddHandler(EventLastTurn.TYPE, this);
        m_eventBus.AddHandler(EventEndOfGame.TYPE, this);
    }