@almadar/core 10.24.0 → 10.25.0
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/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -2117,6 +2117,8 @@ interface OrbitalVerificationAPI {
|
|
|
2117
2117
|
getTraitSnapshots?: () => TraitStateSnapshot[];
|
|
2118
2118
|
/** Canvas frame capture. Populated by game organisms on mount. */
|
|
2119
2119
|
captureFrame?: () => string | null;
|
|
2120
|
+
/** Last neutral drawables list received by the active canvas host. */
|
|
2121
|
+
getLastDrawables?: () => unknown[] | null;
|
|
2120
2122
|
/** Asset-url → load-status map. Populated by game organisms. */
|
|
2121
2123
|
assetStatus?: Record<string, AssetLoadStatus>;
|
|
2122
2124
|
/** Rolling event bus log. Populated by `bindEventBus`. */
|