DeathBook/Assets/Scripts/Models/Friendship.cs
RosimInc 626710331a Did person generation and started friendship generation.
Signed-off-by: RosimInc <rosim_inc@hotmail.com>
2015-08-12 19:45:14 -04:00

12 lines
205 B
C#

using System;
using System.Collections.Generic;
namespace DeathBook.Model
{
class Friendship
{
private Person friend1, friend2;
private int importance; //on a scale from 1 to 100
}
}