ZoFo/ServerOverall/Server/Updates/ClientToServer/UpdateInputInteraction.cs
2024-09-07 12:48:46 +03:00

14 lines
421 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using ZoFo.GameCore.GameManagers.NetworkManager;
namespace ServerOverall.Server.Updates.ClientToServer;
/// <summary>
/// уведомляет сервер о том, что игрок взаимодействует
/// </summary>
public class UpdateInputInteraction : UpdateData
{
public UpdateInputInteraction() { UpdateType = "UpdateInputInteraction"; }
public int PlayerId { get; set; }
}