diff options
| author | realtradam <[email protected]> | 2021-06-11 02:14:57 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2021-06-11 02:14:57 -0400 |
| commit | 3ad8d2531329c1696a2bf86db8db9237309281ab (patch) | |
| tree | 425ec6ded13c8c20cfb087a7a68cfe4c8e8deeea /felflame.rb | |
| parent | 1145a2bf43d87256676f49ae9612ff0c49cd5901 (diff) | |
| download | FelECS-3ad8d2531329c1696a2bf86db8db9237309281ab.tar.gz FelECS-3ad8d2531329c1696a2bf86db8db9237309281ab.zip | |
general cleanup
Diffstat (limited to 'felflame.rb')
| -rw-r--r-- | felflame.rb | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/felflame.rb b/felflame.rb index 981211d..d6a1be4 100644 --- a/felflame.rb +++ b/felflame.rb @@ -11,20 +11,19 @@ class FelFlame # Creates and manages Entities. Allows accessing Entities using their {FelFlame::Entities#id ID} # # TODO: Improve Entity overview - class Entities - end + class Entities; end + # Creates component managers and allows accessing them them under the {FelFlame::Components} namespace as Constants # # To see how component managers are used please look at the {FelFlame::Helper::ComponentManagerTemplate} documentation. # # TODO: Improve Component overview - class Components - end + class Components; end + # Creates an manages Systems. # # TODO: Improve System overview - class Systems - end + class Systems; end end # An alias for {FelFlame} |
