1
0
Fork 0
spacetac/src/scripts/view/battle/Targetting.ts

12 lines
317 B
TypeScript
Raw Normal View History

2014-12-31 00:00:00 +00:00
module SpaceTac.View {
// Targetting system
// Allows to pick a target for a capability
export class Targetting {
// Access to the parent battle view
private battleview: BattleView;
constructor(battleview: BattleView) {
this.battleview = battleview;
}
}
}