Advertisement
rfmonk

particle.py

Mar 16th, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. class Particle:
  2.     def __init__(self, x, y, ang_speed):
  3.         self.x = x
  4.         self.y = y
  5.         self.ang_speed = ang_speed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement