16 lines
576 B
C#
16 lines
576 B
C#
|
|
using Microsoft.Xna.Framework;
|
|
using ZoFo.GameCore.GameManagers.NetworkManager.SerializableDTO;
|
|
|
|
namespace ServerOverall.Server.Updates.ServerToClient
|
|
{
|
|
/// <summary>
|
|
/// Хранит новое сосотяние анимации
|
|
/// </summary>
|
|
public class UpdateGameObjectWithoutIdCreated : UpdateData
|
|
{
|
|
public UpdateGameObjectWithoutIdCreated() { UpdateType = "UpdateGameObjectWithoutIdCreated"; isImportant = true; }
|
|
public string GameObjectClassName { get; set; }
|
|
public SerializableVector2 position { get; set; }
|
|
}
|
|
}
|