public CountryGameEvent(Country country, CountryEventTypeEnum countryEventType, GameTime gameTime) : base(EventTypeEnum.Country, gameTime.Day, gameTime.Time) { CountryID = country.ID; CountryEventType = countryEventType; }
public CountryGameEvent(CountryEvent countryEvent) : base(countryEvent.Event) { CountryID = countryEvent.CountryID; CountryEventType = (CountryEventTypeEnum)countryEvent.CountryEventTypeID; }