public Coins(IUpdatableView view, int n = 1)
 {
     frmView = view;
     if (n >= 0)
     {
         NumCoins = n;
     }
 }
Exemple #2
0
 public RedCircles(IUpdatableView view, int n = 1)
 {
     frmView = view;
     if (n >= 0)
     {
         NumCircles = n;
     }
 }
Exemple #3
0
 public InfoSwitcherDeledage(IUpdatableView app) : base(app)
 {
     _listOfButton   = new List <NSButton>();
     _app            = app;
     _cashedRowViews = new Dictionary <IntPtr, ColoredTableRowView>();
 }
Exemple #4
0
 /// <inheritdoc />
 public bool Dispose(IUpdatableView view)
 {
     return(Dispose(view as TR));
 }
Exemple #5
0
 /// <inheritdoc />
 public bool Dispose(IUpdatableView <T> view)
 {
     return(base.Dispose(view as TR));
 }