Start using LDoc for documentation.

Remove class system
Fix various small bug
This commit is contained in:
bakpakin
2015-03-29 20:19:31 +08:00
parent 8d4b994329
commit c38e5633d5
5 changed files with 244 additions and 225 deletions
+6 -2
View File
@@ -53,7 +53,7 @@ local joe = {
hairColor = "brown"
}
local world = tiny.newWorld(talkingSystem, joe)
local world = tiny.world(talkingSystem, joe)
for i = 1, 20 do
world:update(1)
@@ -64,10 +64,14 @@ end
Tiny-ecs uses [busted](http://olivinelabs.com/busted/) for testing. Install and run
`busted` from the command line to test.
## Documentation ##
See API [here](http://bakpakin.github.io/tiny-ecs/).
Documentation can be generated locally with [LDoc](http://stevedonovan.github.io/ldoc/).
## TODO ##
* Dynamic reordering of Systems
* More testing
* Performance testing / optimization
* API outside of source code
* Improve Documentation
* Add more complete examples