1
1

Container.ts 192 B

1234567
  1. // A container has things inside that can be seen and interacted with.
  2. /// <reference path="../Thing.ts" />
  3. class Container extends Thing {
  4. public put (...things : Array<Thing>) {
  5. }
  6. }