00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #include "config_daeegg.h"
00016 #include "daeCharacter.h"
00017 #include "daeMaterials.h"
00018
00019 #include "dconfig.h"
00020
00021 Configure(config_daeegg);
00022 NotifyCategoryDef(daeegg, "");
00023
00024 ConfigureFn(config_daeegg) {
00025 init_libdaeegg();
00026 }
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 void
00037 init_libdaeegg() {
00038 static bool initialized = false;
00039 if (initialized) {
00040 return;
00041 }
00042 initialized = true;
00043
00044 DaeCharacter::init_type();
00045 DaeMaterials::init_type();
00046 }
00047