Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/api/Game.py
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2012-03-19 03:30:23 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2012-03-19 03:30:23 (GMT)
commit1a2e1064a698b151c71ff9c6a2e59ff401c46205 (patch)
treecfaab62fc8268ceb7b3c8783c3245e2b278d61d8 /src/api/Game.py
parent5964655a3fb3a1a081a4433579867d06ad1f0ab4 (diff)
add utf-8 encoding to all files
Diffstat (limited to 'src/api/Game.py')
-rwxr-xr-xsrc/api/Game.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/api/Game.py b/src/api/Game.py
index 0b89f73..584a208 100755
--- a/src/api/Game.py
+++ b/src/api/Game.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
import pygame
#from pygame.locals import *
import pygame.font
@@ -155,4 +157,4 @@ class CGame(object):
def setBackground(self, aBackgroundImage):
self.mBackground = None
self.mBackground = aBackgroundImage
- self.mScreen.blit(self.mBackground, (0, 0)) \ No newline at end of file
+ self.mScreen.blit(self.mBackground, (0, 0))