This site has been archived and made available for preservation purposes. No edits can be made.

Index

This is an old revision of this page, as edited 08-15-2012, 12:02 AM by foxtacles (contribs). It may differ significantly from the current revision.

[top]Definition

Code c:
const Index: {
        FALLOUT3 = 0x00000001,
        NEWVEGAS = 0x00000010,
        FALLOUT_GAMES = FALLOUT3 | NEWVEGAS,
        ALL_GAMES = FALLOUT_GAMES,
 
        MAX_PLAYER_NAME = 16,
        MAX_PASSWORD_SIZE = 16,
        MAX_MESSAGE_LENGTH = 64,
	MAX_CHAT_LENGTH = 128,
}
Code cpp:
enum _CPP(class) Index _CPP(: uint8_t)
{
	FALLOUT3 = 0x01,
	NEWVEGAS = FALLOUT3 << 1,
	FALLOUT_GAMES = FALLOUT3 | NEWVEGAS,
	ALL_GAMES = FALLOUT_GAMES,
 
	MAX_PLAYER_NAME = 16,
	MAX_PASSWORD_SIZE = 16,
	MAX_MESSAGE_LENGTH = 64,
	MAX_CHAT_LENGTH = 128,
};