private void OnFloorClicked()
        {
            var startBuildEvent = new StartBuildEvent();

            _eventManager.Publish(startBuildEvent);
        }
Esempio n. 2
0
 private void OnStartBuild(StartBuildEvent eventData)
 {
     _buildStarted = true;
 }