Added GPL
This commit is contained in:
parent
e22b4910d5
commit
e80246c3df
|
@ -1,3 +1,24 @@
|
|||
/* GameOfLife - Conway's Game of Life in 3D
|
||||
*
|
||||
* Copyright (c) 2008 by Sebastian Lohff, seba@seba-geek.de
|
||||
* http://www.seba-geek.de
|
||||
*
|
||||
* This file is part of GameOfLife.
|
||||
*
|
||||
* GameOfLife 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* GameOfLife 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 GameOfLife. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "gameoflife.h"
|
||||
|
||||
GameOfLife::GameOfLife(int _x, int _y) {
|
||||
|
|
21
gameoflife.h
21
gameoflife.h
|
@ -1,3 +1,24 @@
|
|||
/* GameOfLife - Conway's Game of Life in 3D
|
||||
*
|
||||
* Copyright (c) 2008 by Sebastian Lohff, seba@seba-geek.de
|
||||
* http://www.seba-geek.de
|
||||
*
|
||||
* This file is part of GameOfLife.
|
||||
*
|
||||
* GameOfLife 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* GameOfLife 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 GameOfLife. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __GAMEOFLIFE_H
|
||||
#define __GAMEOFLIFE_H
|
||||
|
||||
|
|
21
life.cpp
21
life.cpp
|
@ -1,3 +1,24 @@
|
|||
/* GameOfLife - Conway's Game of Life in 3D
|
||||
*
|
||||
* Copyright (c) 2008 by Sebastian Lohff, seba@seba-geek.de
|
||||
* http://www.seba-geek.de
|
||||
*
|
||||
* This file is part of GameOfLife.
|
||||
*
|
||||
* GameOfLife 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* GameOfLife 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 GameOfLife. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
|
|
Loading…
Reference in New Issue