Added a place-holder for a new module.
authorparasti <parasti@78b8d119-cf0a-0410-b17c-f493084dd1d7>
Fri, 4 Jan 2008 15:29:40 +0000 (15:29 +0000)
committerparasti <parasti@78b8d119-cf0a-0410-b17c-f493084dd1d7>
Fri, 4 Jan 2008 15:29:40 +0000 (15:29 +0000)
git-svn-id: https://s.snth.net/svn/neverball/trunk@1401 78b8d119-cf0a-0410-b17c-f493084dd1d7

ball/progress.c [new file with mode: 0644]
ball/progress.h [new file with mode: 0644]

diff --git a/ball/progress.c b/ball/progress.c
new file mode 100644 (file)
index 0000000..5eda2b7
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ *  Copyright (C) 2008  Neverball contributors
+ *
+ *  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 2 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, write  to  the Free  Software
+ *  Foundation,  Inc.,   59  Temple  Place,  Suite   330,  Boston,  MA
+ *  02111-1307 USA
+ */
+
+#include "progress.h"
+
+static unsigned int coins;
+static unsigned int clock;
diff --git a/ball/progress.h b/ball/progress.h
new file mode 100644 (file)
index 0000000..6ebf951
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ *  Copyright (C) 2008  Neverball contributors
+ *
+ *  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 2 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, write  to  the Free  Software
+ *  Foundation,  Inc.,   59  Temple  Place,  Suite   330,  Boston,  MA
+ *  02111-1307 USA
+ */
+
+#ifndef PROGRESS_H
+#define PROGRESS_H
+
+#endif