Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

deck.ts 337B

1234567891011121314151617
  1. /// <reference path="./entity.ts"/>
  2. module rpgcards {
  3. export class Deck extends Entity{
  4. public cards: string[];
  5. public description: string;
  6. constructor(id:string) {
  7. super(id);
  8. this.cards = [];
  9. this.description = "";
  10. }
  11. }
  12. export type DeckList = Deck[];
  13. }