I struggled a problem :
In flashdevelop in source folder I created folder named Sprites and class Player.hx in it.
like this :
package Sprites;
class Player
{
public function new() { }
}
Now i want to create instance in other class. I added right package import like this :
import Sprites.Player;
Everything seems ok, but i still get error :
source/Main.hx:2: characters 7-14 : Class not found : Sprites
Its weird because it tells me that Sprites is class but it isnt.
Can anyone help me ?