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.

TPlatform.js 157B

1234567
  1. import {Trait} from "../Entity.js";
  2. export default class TPlatform extends Trait {
  3. constructor(entity) {
  4. super(entity, "platform", [ "collider" ]);
  5. }
  6. }