I am currently trying to get the Haxe Debugger working with IntelliJ, using information from This video tutorial and This blog post.
At one point, the tutorial says that a DebugSocket
object must be created in the "create" method of the main file. However, when I type this in, I get an unknown symbol error.
From what I understand, the DebugSocket
object should be available from the hxcpp library (which I have included). However, the only options I am given if I type new hxcpp.
are:
- Builder
- NekoInit
- StaticMysql
- StaticRegexp
- StaticSqlite
- StaticStd
- StaticZlib
What am I doing wrong? Have I included the wrong library? Are these tutorials referencing an older version of the library? Is there anywhere I can find comprehensive documentation on how to use the hxcpp debug tools properly?