@rpgjs/common 5.0.0-alpha.10 → 5.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # @rpgjs/common
2
+
3
+ ## 5.0.0-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - alpha
package/dist/Player.d.ts CHANGED
@@ -1,6 +1,5 @@
1
1
  import { Item } from './database';
2
2
  import { Observable } from 'rxjs';
3
- import { Constructor } from './Utils';
4
3
  import * as Matter from 'matter-js';
5
4
  export declare enum Direction {
6
5
  Up = "up",
@@ -197,4 +196,3 @@ export declare class RpgCommonPlayer {
197
196
  }): Observable<any[]>;
198
197
  getCurrentMap(): any;
199
198
  }
200
- export type PlayerCtor<T extends RpgCommonPlayer = RpgCommonPlayer> = Constructor<T>;