Exemple #1
0
    public Tickable()
    {
        _IsDead  = false;
        _InQueue = false;

        _status = TickerStatus.STOPPED;

        _Type = TickableType.Default;

        _Scalable = true;
        _AutoKill = true;
    }
Exemple #2
0
 //----------------- Internal methods -----------------------------------
 public void _SetStatus(TickerStatus newStatus)
 {
     _status = newStatus;
 }