@wayward/types 2.14.0-beta.dev.20240126.1 → 2.14.0-beta.dev.20240128.1
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.
|
@@ -33,6 +33,7 @@ import type ContainerDialog from "@wayward/game/ui/screen/screens/game/dialog/Co
|
|
|
33
33
|
import type ActionBar from "@wayward/game/ui/screen/screens/game/static/ActionBar";
|
|
34
34
|
import MenuBar from "@wayward/game/ui/screen/screens/game/static/MenuBar";
|
|
35
35
|
import type Messages from "@wayward/game/ui/screen/screens/game/static/Messages";
|
|
36
|
+
import Placeholder from "@wayward/game/ui/screen/screens/game/static/Placeholder";
|
|
36
37
|
import type StatsQuadrant from "@wayward/game/ui/screen/screens/game/static/Stats";
|
|
37
38
|
import MovementHandler from "@wayward/game/ui/screen/screens/game/util/movement/MovementHandler";
|
|
38
39
|
import type { Direction } from "@wayward/game/utilities/math/Direction";
|
|
@@ -63,9 +64,11 @@ export default class GameScreen extends Screen {
|
|
|
63
64
|
private readonly nightPopupOverlay;
|
|
64
65
|
private readonly buttonRespawn;
|
|
65
66
|
constructor();
|
|
67
|
+
get isTwoColumn(): boolean;
|
|
66
68
|
private get gameCanvasComponent();
|
|
67
69
|
getQuadrantComponents(): Stream<QuadrantComponent>;
|
|
68
70
|
getQuadrantComponent<C extends QuadrantComponent = QuadrantComponent>(id: QuadrantComponentId): (never extends C ? QuadrantComponent : C extends never[] ? QuadrantComponent | C : {} extends C ? QuadrantComponent | Partial<QuadrantComponent> : QuadrantComponent | C) | undefined;
|
|
71
|
+
getQuadrantComponentInQuadrant(quadrant: Quadrant): QuadrantComponent | Placeholder | undefined;
|
|
69
72
|
getQuadrantContainer(): Component;
|
|
70
73
|
isMouseWithin(): Component | undefined;
|
|
71
74
|
mouseStartWasWithin(api: IBindHandlerApi): boolean | undefined;
|
package/package.json
CHANGED