1
0
Fork 0
spacetac/src/core/ShipAttribute.ts

17 lines
439 B
TypeScript
Raw Normal View History

/// <reference path="ShipValue.ts"/>
2017-02-09 00:00:35 +00:00
module TS.SpaceTac {
/**
* A ship attribute is a value computed by a sum of contributions from equipments and sticky effects.
*
* A value may be limited by other effects.
*/
export class ShipAttribute extends ShipValue {
// Raw contributions value (without limits)
private raw = 0
// Temporary limits
private limits: number[] = []
}
}