tristanable/source/tristanable/manager.d
Tristan B. Velloza Kildaire 8828e3ffdd Manager
- Added an array of `Queue`(s) to the manager

Queue

- Added comments
- Initialize the libsnooze `Event` during construction of the `Queue` type

Dub

- Upgraded libsnooze from `0.2.7` to `0.2.9`

Repository

- Removed `dub.selections.json` file
- Added `dub.selections.json` to the `.gitignore`
2023-03-03 17:44:51 +02:00

15 lines
229 B
D

module tristanable.manager;
import tristanable.queue : Queue;
/**
* Allows one to add new queues, control
* existing ones by waiting on them etc
*/
public class Manager
{
/* Queues */
private Queue[] queues;
}