This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
irreligious/src/model/resource/Infrastructure.ts

6 lines
173 B
TypeScript
Raw Normal View History

2021-08-21 19:53:43 -05:00
/// <reference path="./Purchasable.ts" />
abstract class Infrastructure extends Purchasable {
2021-09-05 14:45:37 -05:00
public readonly resourceType: ResourceType = ResourceType.infrastructure;
2021-08-21 19:53:43 -05:00
}