mani-game-engine 1.0.0-pre.34 → 1.0.0-pre.35

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/src/index.ts CHANGED
@@ -1,32 +1,32 @@
1
- export {GameEngine, GameEngineOptions} from './gameEngine';
2
- export {Entity} from './entity';
3
- export {
4
- Action,
5
- AsyncAction,
6
- Class,
7
- CommandClass,
8
- EngineSignals,
9
- GameEnginePlugin,
10
- System,
11
- OnFixedUpdateParams,
12
- OnUpdateParams,
13
- OnEarlyUpdateParams,
14
- Service,
15
- } from './types';
16
- export {
17
- Scope, SCOPE_CONTEXT, ScopeContext, OnScopeSignal, scopeSignalHandlers, ScopeSignalOptions, ScopeMapping,
18
- } from './scope/scopeContext';
19
- export {SystemContext} from './systemContext';
20
- export {EcsInjector, EntityComponent, GetComponent, GetEntity, GetContext, GetSignal, OnSignal} from './ecsInjector';
21
-
22
- // intellij doesnt auto resolve imports if we just export * from an external dependency
23
-
24
- import {ID, Inject, InjectId, Injector, InjectType, putIfAbsent} from './injector';
25
- import {Signal, SignalBinding, SignalCallback} from 'mani-signal';
26
- import {Clock} from './clock';
27
-
28
- export {Injector, InjectType, InjectId, Inject, putIfAbsent, ID};
29
-
30
- export {Clock};
31
-
32
- export {Signal, SignalBinding, SignalCallback};
1
+ export {GameEngine, GameEngineOptions} from './gameEngine';
2
+ export {Entity} from './entity';
3
+ export {
4
+ Action,
5
+ AsyncAction,
6
+ Class,
7
+ CommandClass,
8
+ EngineSignals,
9
+ GameEnginePlugin,
10
+ System,
11
+ OnFixedUpdateParams,
12
+ OnUpdateParams,
13
+ OnEarlyUpdateParams,
14
+ Service,
15
+ } from './types';
16
+ export {
17
+ Scope, SCOPE_CONTEXT, ScopeContext, OnScopeSignal, scopeSignalHandlers, ScopeSignalOptions, ScopeMapping,
18
+ } from './scope/scopeContext';
19
+ export {SystemContext, OnEntitySignal} from './systemContext';
20
+ export {EcsInjector, EntityComponent, GetComponent, GetEntity, GetContext, GetSignal, OnSignal, GetEntitySignal} from './ecsInjector';
21
+
22
+ // intellij doesnt auto resolve imports if we just export * from an external dependency
23
+
24
+ import {ID, Inject, InjectId, Injector, InjectType, putIfAbsent} from './injector';
25
+ import {Signal, SignalBinding, SignalCallback} from 'mani-signal';
26
+ import {Clock} from './clock';
27
+
28
+ export {Injector, InjectType, InjectId, Inject, putIfAbsent, ID};
29
+
30
+ export {Clock};
31
+
32
+ export {Signal, SignalBinding, SignalCallback};