andygeiss/ecs

View on GitHub
system_manager.go

Summary

Maintainability
A
0 mins
Test Coverage
package ecs

// SystemManager handles the access to each system.
type SystemManager interface {
    // Add systems to the this SystemManager.
    Add(systems ...System)
    // Systems returns internally stored systems.
    Systems() []System
}