001package com.ericlam.mc.minigames.core.event.section; 002 003import com.ericlam.mc.minigames.core.game.GameState; 004import com.ericlam.mc.minigames.core.game.InGameState; 005import com.ericlam.mc.minigames.core.manager.PlayerManager; 006 007import javax.annotation.Nonnull; 008import javax.annotation.Nullable; 009 010/** 011 * 遊戲等候投票事件。他是最初始的遊戲事件, 在遊戲被激活并可以進入的時候觸發。 012 */ 013public final class GameVotingEvent extends GameSectionEvent { 014 public GameVotingEvent(@Nonnull PlayerManager playerManager, @Nullable InGameState inGameState, GameState gameState) { 015 super(playerManager, inGameState, gameState); 016 } 017}