| 32 | namespace ark { |
| 33 | |
| 34 | bool AFCConfigModule::Init() |
| 35 | { |
| 36 | m_pLogModule = FindModule<AFILogModule>(); |
| 37 | m_pClassModule = FindModule<AFIClassMetaModule>(); |
| 38 | |
| 39 | m_pStaticEntityManager = ARK_NEW AFStaticEntityManager(); |
| 40 | |
| 41 | return Load(); |
| 42 | } |
| 43 | |
| 44 | bool AFCConfigModule::Shut() |
| 45 | { |
nothing calls this directly
no test coverage detected