You need to provide a change mechanism:
Add:
public static int Kills{
get{ return kills; }
set{
kills = value;
//change code here...
}
}
Only set
using this public Kills
property. Don't directly change the instance member kills
if possible. But there is always an exception.