Chronos Plugins 5.4.0
This documentation covers the plugin interfaces definitions and an example implementation.
Loading...
Searching...
No Matches
IConsumables.cs
Go to the documentation of this file.
1using System.Collections.ObjectModel;
2
4{
11 public interface IConsumables
12 {
16 ReadOnlyObservableCollection<IManageConsumables> Managers { get; }
23 ReadOnlyObservableCollection<IConsumablePool> Pools { get; }
24 }
25}
For centralized access to all consumables.
Definition: IConsumables.cs:12
ReadOnlyObservableCollection< IConsumablePool > Pools
List of all consumable pools available.
Definition: IConsumables.cs:23
ReadOnlyObservableCollection< IManageConsumables > Managers
List of all consumables managers registered in Chronos, in case you want to find a specific one for i...
Definition: IConsumables.cs:16