mirror of
https://github.com/ConjureETS/DeathBook.git
synced 2026-03-24 20:40:57 +00:00
Added Friendship Created a namespace for models Signed-off-by: RosimInc <rosim_inc@hotmail.com>
14 lines
206 B
C#
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;
|
|
}
|
|
}
|
|
}
|