module re.ng.manager;

/// represents a global engine system
abstract class Manager {
    /// updates this manager
    void update() {
    }

    /// frees resources used by this manager
    void destroy() {
    }
}