Hello, I’m new to Heaps and while working on my first program I tried to compile it, but I got a error about type not found with hxd.App and I have no idea what’s causing it. I know there was someone else asking a similar question, but no one made a direct answer there.
class Main extends hxd.App{
override function init() {
var tf = new h2d.Text(hxd.res.DefaultFont.get(), s2d);
tf.text = "Hello World ! !";
}
static function main() {
new Main();
}
}