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

17 lines
264 B
C#

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