started summary personality page

This commit is contained in:
kima
2023-06-22 19:15:02 +02:00
parent 4068abdb95
commit a1f087758f
5 changed files with 238 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
class Personality {
PersonalityType type;
Personality({
this.type = PersonalityType.npc,
});
}
enum PersonalityType {
geek,
sick,
late,
quitter,
healthy,
acceptable,
fallible,
average,
diligent,
cheater,
npc
}