No Description
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.

dataset.ts 511B

123456789101112131415161718192021222324
  1. /// <reference path="./entity.ts"/>
  2. module rpgcards {
  3. export class CardDataSet extends Entity {
  4. public recordIds: EntityId[];
  5. public properties: string[];
  6. constructor(id:EntityId) {
  7. super(id);
  8. this.recordIds = [];
  9. this.properties = [];
  10. }
  11. }
  12. export class CardData extends Entity {
  13. public data: {[name:string]: any};
  14. constructor(id:EntityId) {
  15. super(id);
  16. this.data = {};
  17. }
  18. }
  19. }