Files
XRLib/Assets/Scripts/Simulator/Components/DataClass/QueueDataClass.cs

17 lines
394 B
C#
Raw Normal View History

2026-01-16 11:36:54 +09:00
using Newtonsoft.Json;
2025-09-30 11:20:24 +09:00
using System;
using UnityEngine;
namespace Simulator.Data
{
[Serializable]
2025-10-16 10:24:29 +09:00
public class QueueDataClass:ComponentDataBase
2025-09-30 11:20:24 +09:00
{
public int capacity;
2026-01-16 11:36:54 +09:00
public bool is_unlimited;
2025-11-04 11:02:02 +09:00
public string queue_type;
2026-01-16 11:36:54 +09:00
[JsonConverter(typeof(PolicyConverter))]
public Policy_Base cost_policy;
2025-11-04 11:02:02 +09:00
public bool backpressure_enabled;
2025-09-30 11:20:24 +09:00
}
}