File: help.h

package info (click to toggle)
enemylines3 1.2-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,380 kB
  • ctags: 1,444
  • sloc: cpp: 16,323; makefile: 74; sh: 52
file content (33 lines) | stat: -rw-r--r-- 393 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef __el3__help_h
#define __el3__help_h

#include <iostream>

#include "game.h"

namespace el3 {


class Help {

public:

static void controls();
static void gameplay();
static void goal(E_LevelType,bool level=false);

static void paused();
static void title();

static void fin();

static void gameover();
static void mouselock();
static void mouselock_off();

};


} //namespace

#endif