Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2012-05-27 02:04:49 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2012-05-27 02:04:49 (GMT)
commit30487f1d09e8c6acffe0bac33b84389a654ab943 (patch)
treea1773cc0734571bbd3f84f00de379444a63de953
parentccf0e533ca952b28c0a54f93ccee4c05b20f00e5 (diff)
add copyright notice in code
-rwxr-xr-xactivity.py23
-rwxr-xr-xsprayplay.py26
2 files changed, 45 insertions, 4 deletions
diff --git a/activity.py b/activity.py
index be4167a..f36fd3c 100755
--- a/activity.py
+++ b/activity.py
@@ -1,4 +1,25 @@
-#!/usr/bin/env python
+#! /usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# SprayPlay
+# Copyright (C) 2008
+# Copyright (C) 2012, Alan Aguiar
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+# Contact information:
+# Alan Aguiar <alanjas@gmail.com>
import gtk
diff --git a/sprayplay.py b/sprayplay.py
index 705c822..e22eab8 100755
--- a/sprayplay.py
+++ b/sprayplay.py
@@ -1,4 +1,26 @@
-#!/usr/bin/env python
+#! /usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# SprayPlay
+# Copyright (C) 2008
+# Copyright (C) 2012, Alan Aguiar
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+# Contact information:
+# Alan Aguiar <alanjas@gmail.com>
+
from __future__ import division
@@ -8,8 +30,6 @@ import pygame
import random
from math import *
from pygame import *
-#from sprayconstants import *
-
# To win
PUCKS_TO_WIN = 5