-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLEVEL.C
More file actions
38 lines (30 loc) · 963 Bytes
/
LEVEL.C
File metadata and controls
38 lines (30 loc) · 963 Bytes
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
34
35
36
37
38
/**********************************************************************/
/* */
/* Malte System/Level */
/* 1992/07/08 */
/* */
/* Copyright (C) par les Chevaliers de Malte */
/* */
/**********************************************************************/
#ifndef __Malte_Video_Level__
#define __Malte_Video_Level__
#include <VIDEO\LEVEL.H>
unsigned char Security = 0;
unsigned char Level = 0;
unsigned char GetLevel(void)
{
return(Level);
}
unsigned char GetSecurity(void)
{
return(Security);
}
void SetLevel(unsigned char L)
{
Level = L;
}
void SetSecurity(unsigned char S)
{
Security = S;
}
#endif