mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-02-23 12:31:15 +00:00
25 lines
616 B
C
25 lines
616 B
C
// Copyright (C) 1999-2000 Id Software, Inc.
|
|
//
|
|
//===========================================================================
|
|
//
|
|
// Name: syn.h
|
|
// Function: synonyms
|
|
// Programmer: Mr Elusive
|
|
// Last update: 1999-09-08
|
|
// Tab Size: 4 (real tabs)
|
|
// Notes: -
|
|
//===========================================================================
|
|
|
|
#ifndef SYN_H_
|
|
#define SYN_H_
|
|
|
|
#define CONTEXT_ALL 0xFFFFFFFF
|
|
#define CONTEXT_NORMAL 1
|
|
#define CONTEXT_NEARBYITEM 2
|
|
#define CONTEXT_CTFREDTEAM 4
|
|
#define CONTEXT_CTFBLUETEAM 8
|
|
#define CONTEXT_REPLY 16
|
|
|
|
#define CONTEXT_NAMES 1024
|
|
|
|
#endif /* SYN_H_ */
|