mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-30 23:49:21 +01:00
Consts (#18455)
* Gets rid of this const * Unused const * Update forensics.dm * Drinks defines * uNUSED * Update Keywords.dm * Update Keywords.dm * Add * yar * Fingerprint
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Constants: Operator Precedence
|
||||
OOP_OR - Logical or
|
||||
OOP_AND - Logical and
|
||||
OOP_BIT - Bitwise operations
|
||||
OOP_EQUAL - Equality checks
|
||||
OOP_COMPARE - Greater than, less then, etc
|
||||
OOP_ADD - Addition and subtraction
|
||||
OOP_MULTIPLY - Multiplication and division
|
||||
OOP_POW - Exponents
|
||||
OOP_UNARY - Unary Operators
|
||||
OOP_GROUP - Parentheses
|
||||
*/
|
||||
|
||||
#define OOP_OR 1 // ||
|
||||
#define OOP_AND 2 // &&
|
||||
#define OOP_BIT 3 // &, |
|
||||
#define OOP_EQUAL 4 // ==, !=
|
||||
#define OOP_COMPARE 5 // >, <, >=, <=
|
||||
#define OOP_ADD 6 // +, -
|
||||
#define OOP_MULTIPLY 7 // *, /, %
|
||||
#define OOP_POW 8 // ^
|
||||
#define OOP_UNARY 9 // !
|
||||
#define OOP_GROUP 10 // ()
|
||||
Reference in New Issue
Block a user