Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 456 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 456 Bytes

ces-framework

Component-Entity-System Framework

The CES framework is mostly inspired by the Artemis Project coded in Java.

Basic usage

		World world = new World();
		world.init();
		
		Entity e = world.createEntity(); // create an entity
		e.addComponent(new ExampleComponent("This is my name")); // attach component to it
		e.addToWorld(); // add it to the world, the entity will be process by systems if needed