-
Notifications
You must be signed in to change notification settings - Fork 0
Config File Layout
redsoxfantom edited this page Dec 27, 2014
·
2 revisions
/Config/
/EntityTypes/
/EntityTypeName.xml
.....
/Worlds/
/WorldName.xml
.....
<World>
<Name>World1</Name> - Required
<Assembly>GameUtilities.Worlds.BaseWorld,GameUtilities</Assembly> - Required
<Entities> - Not Required
<Entity>
<Name>Entity1</Name> - Not Required
<Assembly>GameUtilities.Entities.BaseEntity,GameUtilities</Assembly> - Required
<Type>Entity1Type</Type> - Required
<DataSet> - Not Required
<Entry>
<Key>KEY</Key> - Required
<Value>VALUE</Value> - Required
</Entry>
....
</DataSet>
</Entity>
....
</Entities>
</World>
<EntityType>
<Name>Entity1Type</Name> - Required
<Components> - Not Required
<Component>GameUtilities.Components.BaseComponent,GameUtilities</Component> - Required
</Components>
</EntityType>