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