From: Agnibho Mondal Date: Mon, 7 Dec 2015 14:05:37 +0000 (+0530) Subject: Added licensing information X-Git-Url: https://code.agnibho.com/repo?a=commitdiff_plain;h=HEAD;p=life.git Added licensing information --- diff --git a/Board.py b/Board.py index 06b3d5c..3225094 100644 --- 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 . + 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 558fe40..f3eb4e9 100644 --- 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 . + 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() diff --git a/__main__.py b/__main__.py index e4b4309..b2764a6 100644 --- a/__main__.py +++ b/__main__.py @@ -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 . + 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()