-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgameplay.go
75 lines (69 loc) · 2.72 KB
/
gameplay.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package howlongtobeat
type Perspective string
const (
PerspectiveAll Perspective = ""
PerspectiveFirstPerson Perspective = "First-Person"
PerspectiveIsometric Perspective = "Isometric"
PerspectiveSide Perspective = "Side"
PerspectiveText Perspective = "Text"
PerspectiveThirdPerson Perspective = "Third-Person"
PerspectiveTopDown Perspective = "Top-Down"
PerspectiveVirtualReality Perspective = "Virtual Reality"
)
type Flow string
const (
FlowAll Flow = ""
FlowIncremental Flow = "Incremental"
FlowMassivelyMultiplayer Flow = "Massively Multiplayer"
FlowMultidirectional Flow = "Multidirectional"
FlowOnRails Flow = "On-Rails"
FlowPointAndClick Flow = "Point-and-Click"
FlowRealTime Flow = "Real-Time"
FlowScrolling Flow = "Scrolling"
FlowTurnBased Flow = "Turn-Based"
)
type Genre string
const (
GenreAll Genre = ""
GenreAction Genre = "Action"
GenreAdventure Genre = "Adventure"
GenreArcade Genre = "Arcade"
GenreBattleArena Genre = "Battle Arena"
GenreBeatEmUp Genre = "Beat em Up"
GenreBoardGame Genre = "Board Game"
GenreBreakout Genre = "Breakout"
GenreCardGame Genre = "Card Game"
GenreCityBuilding Genre = "City-Building"
GenreCompilation Genre = "Compilation"
GenreEducational Genre = "Educational"
GenreFighting Genre = "Fighting"
GenreFitness Genre = "Fitness"
GenreFlight Genre = "Flight"
GenreFullMotionVideo Genre = "Full Motion Video (FMV)"
GenreHackAndSlash Genre = "Hack and Slash"
GenreHiddenObject Genre = "Hidden Object"
GenreHorror Genre = "Horror"
GenreInteractiveArt Genre = "Interactive Art"
GenreManagement Genre = "Management"
GenreMusicAndRhythm Genre = "Music/Rhythm"
GenreOpenWorld Genre = "Open World"
GenreParty Genre = "Party"
GenrePinball Genre = "Pinball"
GenrePlatform Genre = "Platform"
GenrePuzzle Genre = "Puzzle"
GenreRacingAndDriving Genre = "Racing/Driving"
GenreRoguelike Genre = "Roguelike"
GenreRolePlaying Genre = "Role-Playing"
GenreSandbox Genre = "Sandbox"
GenreShooter Genre = "Shooter"
GenreSimulation Genre = "Simulation"
GenreSocial Genre = "Social"
GenreSports Genre = "Sports"
GenreStealth Genre = "Stealth"
GenreStrategyTactical Genre = "Strategy/Tactical"
GenreSurvival Genre = "Survival"
GenreTowerDefense Genre = "Tower Defense"
GenreTrivia Genre = "Trivia"
GenreVehicularCombat Genre = "Vehicular Combat"
GenreVisualNovel Genre = "Visual Novel"
)