Type not found :

Hi everyone, I’m new to OpenFl, and I’m trying to develop the first game, but the problems can be seen right away: I created a Player class that extends the OpenFl Sprite class in the “Entities” folder, but when I try to import it in the “Main.hx” file, it gives an error: “Type not found : Player”.

Greetings, mnt.

In Haxe, the rule is that package names need to be lowercase, otherwise you’ll get compiler errors. So “Entities” is not a valid name for the package, but “entities” with a lowercase “e” will work.

Thank you very much… I feel really stupid, as I use the packages every day… :sweat_smile: