]> Softwares of Agnibho - life.git/commitdiff
Added licensing information master
authorAgnibho Mondal <mail@agnibho.com>
Mon, 7 Dec 2015 14:05:37 +0000 (19:35 +0530)
committerAgnibho Mondal <mail@agnibho.com>
Mon, 7 Dec 2015 14:05:37 +0000 (19:35 +0530)
Board.py
Cell.py
__main__.py

index 06b3d5cf68cd3dbcb887e285a9a074bdd6fdc27d..3225094b3790d3a0dd37fe623b9d61e9d939d75b 100644 (file)
--- a/Board.py
+++ b/Board.py
@@ -1,3 +1,21 @@
+# Agnibho's Game of Life - Python implementation of Conway's Game of Life
+# Copyright (C) 2014  Agnibho Mondal
+
+# This file is part of Agnibho's Game of Life
+
+# Agnibho's Game of Life 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.
+
+# Agnibho's Game of Life 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 Agnibho's Game of Life.  If not, see <http://www.gnu.org/licenses/>.
+
 from Tkinter import BooleanVar, StringVar
 import Tkinter as tk
 import tkFileDialog
@@ -292,4 +310,4 @@ class Board(tk.Frame):
     return self.cells[x][y]
   
   def speed(self, val):
-    self.TIME=1000-int(val)
\ No newline at end of file
+    self.TIME=1000-int(val)
diff --git a/Cell.py b/Cell.py
index 558fe407043e6c4c13219b2c0f03b281c4cfc6e3..f3eb4e9bae7b45a0dc003486a6a1689cea46321f 100644 (file)
--- a/Cell.py
+++ b/Cell.py
@@ -1,3 +1,21 @@
+# Agnibho's Game of Life - Python implementation of Conway's Game of Life
+# Copyright (C) 2014  Agnibho Mondal
+
+# This file is part of Agnibho's Game of Life
+
+# Agnibho's Game of Life 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.
+
+# Agnibho's Game of Life 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 Agnibho's Game of Life.  If not, see <http://www.gnu.org/licenses/>.
+
 import Tkinter as tk
 
 class Cell():
@@ -56,4 +74,4 @@ class Cell():
     self.__buff="dead"
     self.__original="dead"
     self.commit()
-    self.unfreeze()
\ No newline at end of file
+    self.unfreeze()
index e4b43093672ce86760366c67f8c05b909e2e23b5..b2764a6bdb2b231e573abd7606d541b3b0dd92e6 100644 (file)
@@ -1,4 +1,23 @@
 #! /usr/bin/python
+
+# Agnibho's Game of Life - Python implementation of Conway's Game of Life
+# Copyright (C) 2014  Agnibho Mondal
+
+# This file is part of Agnibho's Game of Life
+
+# Agnibho's Game of Life 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.
+
+# Agnibho's Game of Life 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 Agnibho's Game of Life.  If not, see <http://www.gnu.org/licenses/>.
+
 import sys
 import Board
 
@@ -35,4 +54,4 @@ elif(width>app.winfo_screenwidth()/10 or depth>(app.winfo_screenheight()-150)/10
 app.render(width, depth)
 if(len(filename)>0):
   app.parsefile(filename)
-app.mainloop()
\ No newline at end of file
+app.mainloop()