Work Life (Visual Novel / Game)
Loading...
Searching...
No Matches
character.h
1#pragma once
2#include "util.h"
4namespace character {
6 constexpr int COUNT = 4;
8 enum CHAR_ENUM {
9 INO = 0,
10 KANADE = 1,
11 RIKA = 2,
12 RIN = 3,
13 GENERIC = 4
14 };
16 const CHAR_ENUM characters[] = {INO, KANADE, RIKA, RIN};
18 bn::string<6> string(CHAR_ENUM c);
20 bn::string<6> string_padded(CHAR_ENUM c);
22 bn::string<4> string_short(CHAR_ENUM c);
23}
characters available in the game
Definition character.h:4
constexpr int COUNT
there are four characters
Definition character.h:6
bn::string< 6 > string_padded(CHAR_ENUM c)
convert character enum to string padded with space
Definition character.cpp:13
const CHAR_ENUM characters[]
conviences array used in loop structures
Definition character.h:16
bn::string< 6 > string(CHAR_ENUM c)
convert character enum to string
Definition character.cpp:4
CHAR_ENUM
the character enum
Definition character.h:8
bn::string< 4 > string_short(CHAR_ENUM c)
convert character enum to two letters
Definition character.cpp:22