string message; // сообщение к этому событию public MatchEvent() { message = ""; weight = 200; possibility = 0; type = TYPE_EVENT.NOTHINHG; }
public MatchEvent(TYPE_EVENT type, int weight, string msg) { this.type = type; this.weight = weight; this.message = msg; }