import type { InjectionKey } from 'vue' import type { UpdateEventHandler } from '../components/Scene.vue' export const InjectionKeys = { Game: Symbol('phavuer_game') as InjectionKey, Scene: Symbol('phavuer_scene') as InjectionKey, GameObject: Symbol('phavuer_gameObject') as InjectionKey, Container: Symbol('phavuer_container') as InjectionKey, Layer: Symbol('phavuer_layer') as InjectionKey, RenderTextureRenderList: Symbol('phavuer_renderTextureRenderList') as InjectionKey, PreUpdateEvents: Symbol('phavuer_preUpdateEvents') as InjectionKey, PostUpdateEvents: Symbol('phavuer_postUpdateEvents') as InjectionKey, }