diff --git a/concept/classes.org b/concept/classes.org index 9ed3639..389e1c8 100644 --- a/concept/classes.org +++ b/concept/classes.org @@ -10,15 +10,16 @@ * World Object ** Interactive Object *** Block +**** Immovable Block **** Movable Block ***** Colour Block -**** Immovable Block -*** Water *** Lever -*** Rolling Stone -*** Laser Beam *** Mirror +*** Rolling Stone +*** Water +*** Well ** Non-Interactive Object *** Background Tile *** Effects +*** Laser Beam diff --git a/robotgame.py b/robotgame.py new file mode 100644 index 0000000..9aa6a45 --- /dev/null +++ b/robotgame.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python + +# This file is part of ROBOTGAME +# +# ROBOTGAME 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. +# +# ROBOTGAME 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 +# Project Ant. If not, see . +# +# ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' +# +# robotgame.py +# -------------------- +# date created : Tue Aug 7 2012 +# copyright : (C) 2012 Sakse Dalum +# maintained by : Sakse Dalum +# description : The main entrance point. + +import robotgame diff --git a/robotgame/__init__.py b/robotgame/__init__.py new file mode 100644 index 0000000..5c21d1e --- /dev/null +++ b/robotgame/__init__.py @@ -0,0 +1 @@ +# init file