DeathBook/Assets/Scripts/Models/PostGenerator.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

20 lines
310 B
C#

using System.Collections.Generic;
namespace DeathBook.Model
{
public class PostGenerator
{
public Status generateStatus(/*put stuff here*/)
{
//and here...
return null;
}
public Headline generateHeadline(/*put stuff here*/)
{
//and here...
return null;
}
}
}