Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
meiron03 committed Mar 14, 2017
2 parents 1e0f71c + 794c33d commit 87ad82c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion game.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html>
<head>

<title>Chimp</title>
<title>Carrom</title>
<meta name="pygwt:module" content="chimp">
</head>
<body style="background-color:black">
Expand Down
10 changes: 6 additions & 4 deletions game.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@

from __future__ import division
from __future__ import absolute_import
import pygame
import pyjsdl as pygame
from math import pi, cos, sin, sqrt
from random import randint, random
from io import open

pyjsdl.display.setup(run, ["boarg.jpg"])


class Vector2(object):

Expand Down Expand Up @@ -245,9 +247,9 @@ def draw(self):

pygame.display.update()

client = Client()
client.run()
def run():
client = Client()
client.run()



Expand Down

0 comments on commit 87ad82c

Please sign in to comment.