18 lines
375 B
C#
18 lines
375 B
C#
using System;
|
|
using System.Security;
|
|
using UnityEngine;
|
|
|
|
namespace Simulator.Data
|
|
{
|
|
[Serializable]
|
|
public class SourceDataClass
|
|
{
|
|
public string name;
|
|
public string label;
|
|
public string modelType;
|
|
public string prefab;
|
|
public int max_spawn_limit;
|
|
public string output_store;
|
|
public physical physical;
|
|
}
|
|
} |