Skip to content

tspoke/ces-framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Component-Entity-System Framework made in Java

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages