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

Index

[top]Definition

Code cpp:
enum VAULTCPP(class) Index VAULTCPP(: uint8_t)
{
	MAX_PLAYER_NAME = 16,
	MAX_PASSWORD_SIZE = 16,
	MAX_MESSAGE_LENGTH = 64,
	MAX_CHAT_LENGTH = 128,
};
Code c:
typedef uint8_t Index;
Code c:
const Index: {
        MAX_PLAYER_NAME = 16,
        MAX_PASSWORD_SIZE = 16,
        MAX_MESSAGE_LENGTH = 64,
	MAX_CHAT_LENGTH = 128,
}