From 71426c0da1e300d78d89ac7dd83b8176a76469f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Boh=C3=A1=C4=8Dek?= Date: Sun, 26 Dec 2021 23:04:26 +0100 Subject: [PATCH] feat: add logout event --- Core/NosSmooth.Game/Events/Login/LogoutEvent.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Core/NosSmooth.Game/Events/Login/LogoutEvent.cs diff --git a/Core/NosSmooth.Game/Events/Login/LogoutEvent.cs b/Core/NosSmooth.Game/Events/Login/LogoutEvent.cs new file mode 100644 index 0000000..f094a04 --- /dev/null +++ b/Core/NosSmooth.Game/Events/Login/LogoutEvent.cs @@ -0,0 +1,14 @@ +// +// LogoutEvent.cs +// +// Copyright (c) František Boháček. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace NosSmooth.Game.Events.Login; + +/// +/// Represents event that is emitted if the user is logged out / changing the server etc. +/// +public class LogoutEvent : IGameEvent +{ +} \ No newline at end of file -- 2.48.1