Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- #ifndef PROPERTY_HEAD_FILE
- #define PROPERTY_HEAD_FILE
-
- #pragma pack(1)
-
- //////////////////////////////////////////////////////////////////////////////////
-
- //랙契렀鍋
- #define PT_ISSUE_AREA_WEB 0x01 //�냘돛야
- #define PT_ISSUE_AREA_GAME 0x02 //踏狗돛야
- #define PT_ISSUE_AREA_SERVER 0x04 //렛쇌돛야
-
- //賈痰렀鍋
- #define PT_SERVICE_AREA_MESELF 0x0001 //菱성렀鍋
- #define PT_SERVICE_AREA_PLAYER 0x0002 //鯤소렀鍋
- #define PT_SERVICE_AREA_LOOKON 0x0004 //텃밖렀鍋
-
- //돛야잚謹
- #define PT_TYPE_ERROR 0 //돛야잚謹
- #define PT_TYPE_PROPERTY 1 //돛야잚謹
- #define PT_TYPE_PRESENT 2 //돛야잚謹
-
- //돛야땍屢
- #define PROPERTY_ID_CAR 1 //폼났쟉膠
- #define PROPERTY_ID_EGG 2 //높뎔쟉膠
- #define PROPERTY_ID_CLAP 3 //뮬廊쟉膠
- #define PROPERTY_ID_KISS 4 //窮曠쟉膠
- #define PROPERTY_ID_BEER 5 //퉤아쟉膠
- #define PROPERTY_ID_CAKE 6 //뎔멤쟉膠
- #define PROPERTY_ID_RING 7 //裏썰쟉膠
- #define PROPERTY_ID_BEAT 8 //괬댔쟉膠
- #define PROPERTY_ID_BOMB 9 //珞뎐쟉膠
- #define PROPERTY_ID_SMOKE 10 //窮緊쟉膠
- #define PROPERTY_ID_VILLA 11 //깎邯쟉膠
- #define PROPERTY_ID_BRICK 12 //漏庫쟉膠
- #define PROPERTY_ID_FLOWER 13 //銶빻쟉膠
-
- #define PROPERTY_ID_TWO_CARD 14 //생롸돛야
- #define PROPERTY_ID_FOUR_CARD 15 //생롸돛야
- #define PROPERTY_ID_SCORE_CLEAR 16 //맏롸헌쥐
- #define PROPERTY_ID_ESCAPE_CLEAR 17 //徑텝헌쥐
- #define PROPERTY_ID_TRUMPET 18 //윙걷돛야
- #define PROPERTY_ID_TYPHON 19 //윙걷돛야
- #define PROPERTY_ID_GUARDKICK_CARD 20 //렝璟돛야
- #define PROPERTY_ID_POSSESS 21 //맒�돛야
- #define PROPERTY_ID_BLUERING_CARD 22 //융裏돛야
- #define PROPERTY_ID_YELLOWRING_CARD 23 //뼝裏돛야
- #define PROPERTY_ID_WHITERING_CARD 24 //겜裏돛야
- #define PROPERTY_ID_REDRING_CARD 25 //븐裏돛야
- #define PROPERTY_ID_VIPROOM_CARD 26 //VIP렛돛야
-
- //////////////////////////////////////////////////////////////////////////////////
-
- //돛야斤口
- struct tagPropertyInfo
- {
- //돛야斤口
- WORD wIndex; //돛야깃街
- WORD wDiscount; //삔逃粮왱
- WORD wIssueArea; //랙꼈렀鍋
-
- //饋簡송목
- SCORE lPropertyGold; //돛야쏜귑
- DOUBLE dPropertyCash; //돛야송목
-
- //騰箇宅제
- SCORE lSendLoveLiness; //騰箇宅제
- SCORE lRecvLoveLiness; //쌈肝宅제
- };
-
-
- //돛야橄昑
- struct tagPropertyAttrib
- {
- WORD wIndex; //돛야깃街
- WORD wPropertyType; //돛야잚謹
- WORD wServiceArea; //賈痰렀鍋
- TCHAR szMeasuringunit[8]; //셕좆데貫
- TCHAR szPropertyName[32]; //돛야츰俚
- TCHAR szRegulationsInfo[256]; //賈痰斤口
- };
-
- //돛야綾淃
- struct tagPropertyItem
- {
- tagPropertyInfo PropertyInfo; //돛야斤口
- tagPropertyAttrib PropertyAttrib; //돛야橄昑
- };
-
- //////////////////////////////////////////////////////////////////////////////////
-
- #pragma pack()
-
- #endif
|