1
0
Fork 0
spacetac/src/scripts/game/Slot.ts

19 lines
354 B
TypeScript

module SpaceTac.Game {
"use strict";
export enum SlotType {Armor, Shield, Engine, Power, Weapon, }
// Slot to attach an equipment to a ship
export class Slot {
// Link to the ship
ship: Ship;
// Type of slot
type: SlotType;
// Currently attached equipment
attached: Equipment;
}
}