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

Emoticon

[top]Definition

Code cpp:
enum VAULTCPP(class) Emoticon VAULTCPP(: uint8_t)
{
	Happy = 0,
	Sad = 1,
	Neutral = 2,
	Pain = 3,
};
Code c:
typedef uint8_t Emoticon;
Code c:
const Emoticon: {
	Happy = 0,
	Sad = 1,
	Neutral = 2,
	Pain = 3,
}