Quote:
Originally Posted by xXziroXx
PHP Code:
enum key{
F9 = 122,
F10 = 123,
F11 = 124
}
I'd prefer doing this since I see no apparent difference:
PHP Code:
this.key = new TStaticVar();
this.key.F9 = 122;
this.key.F10 = 123;
this.key.F11 = 124;
|
Hmm...never thought about making a key list an object.
Anyway, back on topic! Can I get a few opinions here?