Implemented stub functionality for determining player Profile, level Archetype and generating Level Components using a simple grammar.

See new method calls in MyNewLevel for an example of this level creation pipeline.
This commit is contained in:
Woody Folsom
2012-03-17 11:49:50 -04:00
parent a827ca7430
commit e1aadadde4
10 changed files with 244 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package dk.itu.mario.level.generator;
public class GrammarTuner {
public static LevelGrammar tune(LevelGrammar grammar, PlayerProfile profile, LevelArchetype archetype) {
return grammar;
}
}