I am currently working on a Unity3d 4.0 Pro project where i am trying to link the tngaming vest to unity. The only SDK ( http://tngames.com/pages/Developers ) i have available is a C++ .h and a .lib file. As far as i understand from the documentation ( http://docs.unity3d.com/Documentation/Manual/Plugins.html ), i should simply put the two tngaming.h and tngaming.lib into my assets folder and do the following code:
[DllImport("tngaming")]
private static extern int SetUpJacket();
And that would allow me to call the function SetUpJacket()
. However i get the DllNotFoundException: tngaming error.
Anyone who got some information doing something similar who can help out?