def __init__(self, game_area):
        width = 500
        height = 500
        cols = 3
        rows = 3

        self.mimic_area = MimicArea.MimicArea(
            (game_area[0] / 2) - (width / 2),
            (game_area[1] / 2) - (height / 2), width, height, rows, cols)

        self.music_controller = MusicController.MusicController()
        self.mimic = Mimic.Mimic(self.mimic_area.cells[0])
        self.attack_controller = AttackController.AttackController()
        self.is_game_over = False
        self.is_paused = False
        self.game_active = False
        self.points = 0