25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- using System;
- using CIGEnums;
- using SUISS.Core;
-
- public class CityAdvisorBalloon : Balloon
- {
- public CityAdvisorBalloon() : base(GridTileIconType.WalkerBalloon, SpeechBaloonType.CityAdvisor)
- {
- }
-
- public override void Collect()
- {
- base.Collect();
- SingletonMonobehaviour<CIGCityAdvisor>.Instance.Show();
- this.ShownAdvice = SingletonMonobehaviour<CIGCityAdvisor>.Instance.AdviceType;
- }
-
- public AdviceType ShownAdvice { get; private set; }
- }
|