Guest User

Untitled

a guest
Nov 16th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. package
  2. {
  3. import flash.display.Sprite;
  4. /**
  5. * ...
  6. * @author Simon Hoff Tysland
  7. */
  8. public class objects
  9. {
  10.  
  11. public function objects() :void
  12. {
  13.  
  14. }
  15.  
  16. public function drawGround():void {
  17. this.graphics.lineStyle(1, 0x0000FF);
  18. this.graphics.beginFill(0x0000FF);
  19. this.graphics.drawRect(0, 0, 800, 100);
  20. this.graphics.endFill();
  21. }
  22.  
  23. }
  24.  
  25. }
Add Comment
Please, Sign In to add comment