DeathBook/Assets/Scripts/Models/LevelGenerator.cs
RosimInc 7362541eaf Skeleton for model classes.
Signed-off-by: RosimInc <rosim_inc@hotmail.com>
2015-08-11 03:18:31 -04:00

11 lines
165 B
C#

using System.Collections.Generic;
public class LevelGenerator
{
public Level generateLevel(/*put stuff here*/)
{
//and here...
return null;
}
}