Skip to content
Snippets Groups Projects

Better popup

Merged Szász Milán requested to merge better_popup into master
4 files
+ 93
23
Compare changes
  • Side-by-side
  • Inline
Files
4
using System;
using System.Collections.Generic;
using System.Text;
using HELLo_World.MapData.People;
namespace HELLo_World.Model.Information
{
@@ -16,16 +17,22 @@ namespace HELLo_World.Model.Information
public Int32 Money { get; private set; }
public Activity CurrentActivity { get; private set; }
public Status CurrentStatus { get; private set; }
#endregion
#region Constructor
public VisitorInfo(Int32 adr, Int32 food, Int32 happ, Int32 mon)
public VisitorInfo(Int32 adr, Int32 food, Int32 happ, Int32 mon, Activity act, Status stat)
{
Adrenalin = adr;
Food = food;
Happiness = happ;
Money = mon;
CurrentActivity = act;
CurrentStatus = stat;
}
#endregion
Loading