WutheringWaves/GameServer/Models/FormationModel.cs

18 lines
325 B
C#

namespace GameServer.Models;
internal class FormationModel
{
public int[] RoleIds { get; }
public FormationModel()
{
RoleIds = new int[3];
}
public void Set(int[] roleIds)
{
for (int i = 0; i < RoleIds.Length; i++)
{
RoleIds[i] = roleIds[i];
}
}
}