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

            _eventManager.Publish(startBuildEvent);
        }
예제 #2
0
 private void OnStartBuild(StartBuildEvent eventData)
 {
     _buildStarted = true;
 }