VerseIsland
Feed Learn Leaderboard Guides Explore Search Docs Verse Library
Sign in
Feed Learn Leaderboard Guides Explore Search Docs Verse Library
Fortnite › Verse Language · Up to Fortnite · Verse Language · 1 of 570 in Verse Language
Browse Fortnite

7. Construct the Game

The final step is to put all the pieces together through a game manager. The game manager controls the assignment of gameplay objects to players and the flow of the game loop. Specifically, the game manager:

  • Assigns gameplay objects such as board and miniboard to players.
  • Controls the logic of the game loop, including what happens when a move occurs.
  • Determines when a player has won and gameplay ends.

Define the Move Types

During a player's turn, the player chooses a coordinate on the game board. Once a coordinate is chosen, there are two different move types:

  • Attack: Attempt to destroy the pawn at the given location.
  • Reveal: Reveal all pawns within a certain radius of a given location.

In the DataTypes module, add the following enum defining the move types:

|  |  |
| --- | --- |
|  | using{/Verse.org/Simulation} |
|  | using{/Verse.org/Random} |
|  | using{/UnrealEngine.com/Temporary/SpatialMath} |
|  |  |
|  | DataTypes<public> := module: |
|  |  |
|  | ... |
|  |  |
|  | move_type<public> := enum<open>: |
|  | Attack |
|  | Reveal |
|  | Unknown |

using{/Verse.org/Simulation} using{/Verse.org/Random} using{/UnrealEngine.com/Temporary/SpatialMath} DataTypes<public> := module: ... move_type<public> := enum<open>: Attack Reveal Unknown

You're reading a preview

The full reference is free for BrainDeadGuild Discord members — sign in to read it all, or open the original at the source.

Sign in with Discord — free for members Read the original at Epic Games

Sign in with your BrainDead.TV / BrainDeadGuild Discord account for full access.

Comments

    Sign in to vote, comment, or suggest an edit. Sign in
    📄
    Source
    Epic Games

    © Epic Games. Official Epic developer documentation, shown here as a reference with a link to the original. All rights remain with Epic Games. Terms ↗

    View original Sources & licensing
    Request removal
    Last updated May 12, 2026
    Keep exploring
    More in Verse Language · 1 of 570
    Next
    any in verse
    Browse all files in this folder (A–Z)
    Related topics
    • Fortnite Creative Glossary Verse Language
    • Verse Starter Template 5 Controlling Npc With Ui In Unreal Editor For Fortnite Npcs & Ai
    • Verse Starter Template 6 Managing Game Loop In Unreal Editor For Fortnite Tutorials
    • Verse Starter Template 7 Final Result In Unreal Editor For Fortnite Tutorials
    • Coordinate Battle Tutorial Tutorials

    Related

    Open in graph →

    Related topics

    • Fortnite Creative Glossary
    • Verse Starter Template 5 Controlling Npc With Ui In Unreal Editor For Fortnite
    • Verse Starter Template 6 Managing Game Loop In Unreal Editor For Fortnite
    • Verse Starter Template 7 Final Result In Unreal Editor For Fortnite
    • Coordinate Battle Tutorial
    VerseIsland · an archipelago of Verse & UEFN knowledge
    Learn Guides History About & Press Sources & Licensing Status

    Not affiliated with Epic Games. Fortnite, UEFN, Unreal Engine, and Verse are trademarks of Epic Games, Inc. Content is attributed to its source — see Sources & Licensing.