Guest User

Untitled

a guest
Jan 24th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package
  2. {
  3. import net.flashpunk.Entity;
  4. import net.flashpunk.graphics.Image;
  5. public class MyEntity extends Entity
  6. {
  7. [Embed(source = 'assets/player.png')] private const PLAYER:Class;
  8. public function MyEntity()
  9. {
  10. graphic = new Image(PLAYER);
  11. }
  12. }
  13. }
Add Comment
Please, Sign In to add comment