2
// SharpEngine.h
namespace SharpEngine {
class SharpInst {
public:
// Insert Game Engine Code.
// Use this format
// static __declspec(dllexport) type function(parameters);
static __declspec(dllexport) void saveGame(object_as_param_here)
};
}
凡說「object_as_param_here」我需要傳遞一個對象,這樣的函數可以訪問包含類似水平,經驗,健康數據的對象,等如何在.dll類Method方法參數中傳遞一個對象?
這是一個.dll爲好,我怎樣才能使它與其他代碼一起使用,並仍能夠調用各種對象?
謝謝!這真的有幫助!教我很多! – Tux