[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: C++ enum
- From: Archibald <usenet123@...>
- Date: Mon, 23 Jun 2003 17:59:18 +0200
I want to share my identificators by both program and script. It's easy
when I use #define (I simply delete #define part and copy the rest to the
script). But how can I do it when I use C++ enum? Is it possible in lua to
do it other way than manually giving each identificator it's number?
enum enumItem { ITEM_SWORD, ITEM_AXE, ITEM_SHIELD };
Archibald