DeathBook/Assets/Scripts/Models/LevelGenerator.cs
RosimInc 95caf44538 Removed unneeded files
Added Friendship
Created a namespace for models

Signed-off-by: RosimInc <rosim_inc@hotmail.com>
2015-08-12 11:03:39 -04:00

14 lines
206 B
C#

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