Update import order

This commit is contained in:
Oliver-Akins 2020-09-29 17:20:02 -06:00
parent b0117ed6fe
commit 4f00510401

View file

@ -5,6 +5,7 @@ import { HostGame } from "./events/HostGame";
import { StartGame } from "./events/StartGame"; import { StartGame } from "./events/StartGame";
import { VetoConfirm } from "./events/VetoConfirm"; import { VetoConfirm } from "./events/VetoConfirm";
import { VetoRequest } from "./events/VetoRequest"; import { VetoRequest } from "./events/VetoRequest";
import { GetPlayerList } from "./events/GetPlayerList";
import { ChancellorPolicy } from "./events/ChancellorPolicy"; import { ChancellorPolicy } from "./events/ChancellorPolicy";
import { PresidentPolicies } from "./events/PresidentPolicies"; import { PresidentPolicies } from "./events/PresidentPolicies";
import { ChancellorNomination } from "./events/ChancellorNomination"; import { ChancellorNomination } from "./events/ChancellorNomination";
@ -12,7 +13,6 @@ import { ExecutePlayer } from "./events/special/Execution/ExecutePlayer";
import { NextPresident } from "./events/special/SpecialElection/NextPresident"; import { NextPresident } from "./events/special/SpecialElection/NextPresident";
import { ExecutiveConfirmation } from "./events/special/ExecutiveConfirmation"; import { ExecutiveConfirmation } from "./events/special/ExecutiveConfirmation";
import { InvestigateAffiliation } from "./events/special/InvestigateLoyalty/InvestigateAffiliation"; import { InvestigateAffiliation } from "./events/special/InvestigateLoyalty/InvestigateAffiliation";
import { GetPlayerList } from "./events/GetPlayerList";
const io = sio.listen(3000); const io = sio.listen(3000);