1
0
Çatalla 0
şundan çatallanmış masterofpuppets/mql5
mql5/Include/MasterOfPuppetsLib/ActionKey.mqh
MasterOfPuppets b522a21c10 new files added
2026-03-03 01:41:15 +03:00

53 satır
1,1 KiB
MQL5

//+------------------------------------------------------------------+
//| ActionKey.mqh |
//| Copyright 2026, MasterOfPuppets |
//| https://forge.mql5.io/masterofpuppets/mql5 |
//+------------------------------------------------------------------+
#ifndef MASTER_OF_PUPPETS_LIB_ACTION_KEY_MQH
#define MASTER_OF_PUPPETS_LIB_ACTION_KEY_MQH
#property copyright "Copyright 2026, MasterOfPuppets"
#property link "https://forge.mql5.io/masterofpuppets/mql5"
enum ActionKey
{
A = 'A',
B = 'B',
C = 'C',
D = 'D',
E = 'E',
F = 'F',
G = 'G',
H = 'H',
I = 'I',
J = 'J',
K = 'K',
L = 'L',
M = 'M',
N = 'N',
O = 'O',
P = 'P',
Q = 'Q',
R = 'R',
S = 'S',
T = 'T',
U = 'U',
V = 'V',
W = 'W',
X = 'X',
Y = 'Y',
Z = 'Z',
_1 = '1',
_2 = '2',
_3 = '3',
_4 = '4',
_5 = '5',
_6 = '6',
_7 = '7',
_8 = '8',
_9 = '9',
_0 = '0'
};
#endif
//+------------------------------------------------------------------+