2025-09-30 11:20:24 +09:00
|
|
|
using System;
|
|
|
|
|
using System.Security;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace Simulator.Data
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
2025-10-16 10:24:29 +09:00
|
|
|
public class SourceDataClass:ComponentDataBase
|
2025-09-30 11:20:24 +09:00
|
|
|
{
|
|
|
|
|
public string name;
|
|
|
|
|
public string label;
|
|
|
|
|
public string modelType;
|
|
|
|
|
public string prefab;
|
|
|
|
|
public int max_spawn_limit;
|
|
|
|
|
public string output_store;
|
|
|
|
|
}
|
|
|
|
|
}
|