Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 327 Bytes

moonpie.ecs.rst

File metadata and controls

13 lines (9 loc) · 327 Bytes

moonpie.ecs

The Moonpie Entity Component System is a lightweight approach to handling entities for processing.

local moonpie = require "moonpie"
local world = moonpie.ecs.world:new()

world:add_systems(...)
world:add_entities(...)
world:update("some_method")