Advertisement
Guest User

Untitled

a guest
Jul 10th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ScreenRes 800, 600, 32, 2
  2.  
  3. Dim Background As Any Ptr
  4. Dim mysprite    As Any Ptr
  5. Dim x As Integer
  6.  
  7. mysprite = ImageCreate(128, 128)
  8.  
  9. BLoad "test.bmp", mysprite
  10.  
  11.  
  12.  
  13. 'Schleife
  14. Do
  15.     x = x + 1
  16.  
  17.     Put(x, 100), mysprite, PSet
  18.     Put(150, 150), mysprite, PSet
  19.  
  20.     Sleep 1
  21.    
  22.     ScreenSync 
  23.     Cls
  24.  
  25. Loop Until x > 1000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement