fauxnik / dv-rolling-stock-ownership

A Derail Valley mod that introduces a game mechanic of purchasing and managing rolling stock.
MIT License
5 stars 4 forks source link

Update for Simulator #30

Closed ValerianUrbanski closed 1 year ago

ValerianUrbanski commented 1 year ago

Update the mod to work with Derail Valley: Simulator.

Burndown of existing features

fauxnik commented 1 year ago

By the way, in case you hadn't noticed, the v2 version of all the types have a v1 field, so you can do things like:

CargoType_v2 cargoTypeV2 = GetCargoTypeV2FromSomewhere();
MethodThatTakesCargoTypeV1(cargoTypeV2.v1);

It's defined in the Thing_v2_from_v1_enum abstract class, which all the new types extend.