aboutsummaryrefslogtreecommitdiff
path: root/Src/Wasabi/api/console/console.h
blob: bece619d06ba99ba1d17d8aea2d9bf994ccc6d80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __CONSOLE_H
#define __CONSOLE_H

class ConsoleEnum;

class Console {
  public:

    static void outputString(int severity, const char *string);
    static void reset();

  private:

    static ConsoleEnum *console;
    static int needscan;
    static int noconsole;
};

#endif