Skip to content

Instantly share code, notes, and snippets.

@gra-moore
Created February 1, 2012 17:25
Show Gist options
  • Save gra-moore/1718150 to your computer and use it in GitHub Desktop.
Save gra-moore/1718150 to your computer and use it in GitHub Desktop.
Entity System Sample Model 1
@prefix comp: <http://www.networkedplanet.com/es/component/> .
@prefix entities: <http://www.networkedplanet.com/es/entity/> .
@prefix schema: <http://www.networkedplanet.com/es/schema/> .
entities:e1 a schema:Entity .
comp:c1 a schema:Moveable .
comp:c1 schema:has-entity entities:e1 .
comp:c1 schema:x 0 .
comp:c1 schema:y 0 .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment