@rbxts/planck 0.3.0-alpha.1 → 0.3.0-alpha.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/planck",
3
- "version": "0.3.0-alpha.1",
3
+ "version": "0.3.0-alpha.2",
4
4
  "description": "An Agnostic Scheduler for ECS",
5
5
  "main": "src",
6
6
  "repository": {
package/src/Phase.d.ts CHANGED
@@ -13,6 +13,8 @@ export class Phase {
13
13
  /** Runs after the `Startup` phase. */
14
14
  static PostStartup: Phase;
15
15
 
16
+ private _type: "phase";
17
+
16
18
  /**
17
19
  * Creates a new Phase, with an optional name to use for debugging.
18
20
  * When no name is provided, the script and line number will be used.
package/src/Pipeline.d.ts CHANGED
@@ -9,6 +9,8 @@ export class Pipeline {
9
9
  /** A Pipeline containing the `PreStartup`, `Startup`, and `PostStartup` phases. */
10
10
  static Startup: Pipeline;
11
11
 
12
+ private _type: "pipeline";
13
+
12
14
  /**
13
15
  * Creates a new Pipeline, with an optional name to use for debugging.
14
16
  * When no name is provided, the script and line number will be used.