@@ -5,5 +5,5 @@ project(crown-samples)
link_directories(${CROWN_BINARY_DIR})
add_subdirectory(terrain)
-add_subdirectory(json)
-add_subdirectory(lua)
+#add_subdirectory(json)
+#add_subdirectory(lua)
@@ -213,17 +213,17 @@ WndCtrl m_ctrl;
extern "C"
{
- void init()
+ __declspec(dllexport) void init()
m_scene.on_load();
}
- void shutdown()
+ __declspec(dllexport) void shutdown()
m_scene.on_unload();
- void frame(float dt)
+ __declspec(dllexport) void frame(float dt)
m_scene.update(dt);