Files
tbd-station-14/Content.Server/Voting/VoteFinishedEventHandler.cs
2021-07-16 17:37:09 -07:00

7 lines
211 B
C#

namespace Content.Server.Voting
{
public delegate void VoteFinishedEventHandler(IVoteHandle sender, VoteFinishedEventArgs args);
public delegate void VoteCancelledEventHandler(IVoteHandle sender);
}