avocados/crystal.py

32 lines
695 B
Python
Raw Normal View History

2014-08-31 01:03:39 +02:00
#!/usr/bin/env python3
"""
A class that represents a lawyer
"""
import os, pygame
from support import operations
from support.colors import *
class Crystal:
def __init__(self, screen):
self.screen = screen
screen_width, screen_height = screen.get_size()
2014-08-31 12:08:00 +02:00
screen_rect = self.screen.get_rect()
self.imageCenterX = screen_rect.centerx
self.imageCenterY = screen_rect.centery
self.pos = (self.imageCenterX-100,self.imageCenterY-5,200,183)
2014-08-31 12:08:00 +02:00
def getBoundaries(self):
return self.pos
2014-08-31 01:03:39 +02:00
2014-08-31 01:38:26 +02:00
def blitme(self):
pygame.draw.ellipse(self.screen, self.color, self.pos, 0)
2014-08-31 01:38:26 +02:00
2014-08-31 01:03:39 +02:00
def setColor(self, color):
2014-08-31 01:38:26 +02:00
self.color = color