Renamed Status to ShoutBubble

Signed-off-by: RosimInc <rosim_inc@hotmail.com>
This commit is contained in:
RosimInc 2015-08-16 23:43:03 -04:00
parent 8cededcf49
commit cba8d2501b

View File

@ -72,8 +72,8 @@ namespace DeathBook.Model
private System.Action onSelected; private System.Action onSelected;
public System.Action OnSelected {get {return onSelected;} set { onSelected = value; } } public System.Action OnSelected {get {return onSelected;} set { onSelected = value; } }
private Status status = null; private ShoutBubble status = null;
public Status CurrentStatus public ShoutBubble CurrentStatus
{ {
get { return status; } get { return status; }
set { status = value; NotifyObservers(); } set { status = value; NotifyObservers(); }
@ -157,7 +157,7 @@ namespace DeathBook.Model
if (Random.value < 0.2f) if (Random.value < 0.2f)
{ {
CurrentStatus = new Status(GameLevel.GameTime, f); CurrentStatus = new ShoutBubble(GameLevel.GameTime, f);
} }
//Debug.Log("I am " + id + " and I know my friend " + f.Friend.Id + " was killed.. " + strategyOutput); //Debug.Log("I am " + id + " and I know my friend " + f.Friend.Id + " was killed.. " + strategyOutput);