DeathBook/Assets/Scripts/Models/Friendship.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
245 B
C#

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