Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type FarseerKernelModule ¶
type FarseerKernelModule struct { }
func (FarseerKernelModule) DependsModule ¶
func (module FarseerKernelModule) DependsModule() []FarseerModule
func (FarseerKernelModule) Initialize ¶
func (module FarseerKernelModule) Initialize()
func (FarseerKernelModule) PostInitialize ¶
func (module FarseerKernelModule) PostInitialize()
func (FarseerKernelModule) PreInitialize ¶
func (module FarseerKernelModule) PreInitialize()
func (FarseerKernelModule) Shutdown ¶
func (module FarseerKernelModule) Shutdown()
type FarseerModule ¶
type FarseerModule interface { // DependsModule 依赖的模块 DependsModule() []FarseerModule // PreInitialize 预初始化 PreInitialize() // Initialize 初始化 Initialize() // PostInitialize 初始化之后 PostInitialize() // Shutdown 应用关闭之前先关闭模块 Shutdown() }
func GetDependModule ¶
func GetDependModule(module ...FarseerModule) []FarseerModule
GetDependModule 查找模块的依赖
Click to show internal directories.
Click to hide internal directories.