From 3a2f4083948651f9acb81ba5808e5c29026c92f4 Mon Sep 17 00:00:00 2001 From: Yorick van Klinken Date: Sun, 30 Jun 2024 17:35:53 +0200 Subject: [PATCH] feat: expose all actor exports (#3113) I originally only intended to add `ActorEvents` to the exports, so it's possible to extend it without a dirty import: `import {ActorEvents} from "excalibur/build/dist/Actor";` But I don't see any reason to not export all of the Actor exports, because `isActor` could also be really useful for people extending core EX functionality --- src/engine/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/index.ts b/src/engine/index.ts index 5a38f8bed..234d5f796 100644 --- a/src/engine/index.ts +++ b/src/engine/index.ts @@ -12,7 +12,7 @@ export * from './Flags'; export * from './Id'; export * from './Engine'; export * from './Screen'; -export { Actor, ActorArgs } from './Actor'; +export * from './Actor'; export * from './Math/Index'; export * from './Camera'; export * from './Configurable';