~ubuntu-branches/ubuntu/breezy/gnubik/breezy

« back to all changes in this revision

Viewing changes to src/colour-sel-athena.c

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2004-09-21 13:48:26 UTC
  • Revision ID: james.westby@ubuntu.com-20040921134826-p3sk7d3qzsaotn2s
Tags: upstream-2.2
ImportĀ upstreamĀ versionĀ 2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    GNUbik -- A 3 dimensional magic cube game.
 
3
    Copyright (C) 2003  John Darrington
 
4
 
 
5
    This program is free software; you can redistribute it and/or modify
 
6
    it under the terms of the GNU General Public License as published by
 
7
    the Free Software Foundation; either version 2 of the License, or
 
8
    (at your option) any later version.
 
9
 
 
10
    This program is distributed in the hope that it will be useful,
 
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
    GNU General Public License for more details.
 
14
 
 
15
    You should have received a copy of the GNU General Public License
 
16
    along with this program; if not, write to the Free Software
 
17
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
18
*/
 
19
static const char RCSID[]="$Id: colour-sel-athena.c,v 1.4 2003/10/26 04:32:51 jmd Exp $";
 
20
 
 
21
 
 
22
#include "colour-sel.h"
 
23
 
 
24
/* Some day I might do a proper implementation for this */
 
25
 
 
26
static struct cube_rendering foo = {
 
27
  COLORED,-1,0
 
28
};
 
29
 
 
30
struct  cube_rendering *rendering[6]= 
 
31
  {
 
32
    (struct cube_rendering *) &foo,
 
33
    (struct cube_rendering *) &foo,
 
34
    (struct cube_rendering *) &foo,
 
35
    (struct cube_rendering *) &foo,
 
36
    (struct cube_rendering *) &foo,
 
37
    (struct cube_rendering *) &foo,
 
38
  };
 
39
 
 
40
 
 
41
 
 
42
 
 
43
 
 
44
 
 
45
 
 
46