-
Notifications
You must be signed in to change notification settings - Fork 0
/
ALIGNMNT.CPP
51 lines (42 loc) · 1.93 KB
/
ALIGNMNT.CPP
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
39
40
41
42
43
44
45
46
47
48
49
50
51
/* ========================================================================
Copyright (c) 1990,1995 Synergistic Software
All Rights Reserved
========================================================================
Filename: alignmnt.cpp - Player Alignment data tables
Author: Gary Powell
========================================================================
Contains the following general functions:
======================================================================== */
/* ------------------------------------------------------------------------
Includes
------------------------------------------------------------------------ */
#include "ALIGNMNT.HXX"
//#include "gamestr.h"
#include "strenum.h"
/* ------------------------------------------------------------------------
Notes
------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------
Defines and Compile Flags
------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------
Macros
------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------
Prototypes
------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------
Global Variables
------------------------------------------------------------------------ */
GAME_STRING const ALIGNMENT_INFO::fpAlignmentInfoTable[] = {
STR_ALIGNMENT_NON_ALIGNED,
STR_ALIGNMENT_LAWFUL_GOOD,
STR_ALIGNMENT_LAWFUL_NEUTRAL,
STR_ALIGNMENT_LAWFUL_EVIL,
STR_ALIGNMENT_NEUTRAL_GOOD,
STR_ALIGNMENT_TRUE_NEUTRAL,
STR_ALIGNMENT_NEUTRAL_EVIL,
STR_ALIGNMENT_CHAOTIC_GOOD,
STR_ALIGNMENT_CHAOTIC_NEUTRAL,
STR_ALIGNMENT_CHAOTIC_EVIL
};