/// @brief Notifies that this plugin must be notified on clock ticks.
 /// This method is for isolate the access to the underline Chip.
 /// @since V15.03.26 - Added.
 public void NotifyOnClock()
 {
     if (Chip != null)
     {
         Chip.NotifyOnClock(this);
     }
 }
Пример #2
0
 /// @brief Notifies that this plugin must be notified on clock ticks.
 /// This method is for isolate the access to the underline Chip.
 /// @version V15.03.26 - Added.
 public void NotifyOnClock()
 {
     Chip.NotifyOnClock(this);
 }