8 lines
182 B
C#
8 lines
182 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu(menuName = "Evo/SocketDataEntity")]
|
|
public class SocketDataEntity : ScriptableObject
|
|
{
|
|
public string serverIP;
|
|
public bool isConnected;
|
|
} |