22 lines
583 B
C#
22 lines
583 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Stary.Evo
|
|
{
|
|
|
|
|
|
[CreateAssetMenu(fileName = "HotfixMainResDomain", menuName = "Evo/Create HotfixMainResDomain")]
|
|
public class HotfixMainResDomain : ScriptableObject
|
|
{
|
|
public HotfixMainResDomainEntity hotfixMainResDomainEntity;
|
|
}
|
|
|
|
[Serializable]
|
|
public class HotfixMainResDomainEntity
|
|
{
|
|
public string ipconfig="http://192.168.31.100:5005/HotRefresh";
|
|
public string mainDomainVersion ="";
|
|
public string username="UnityHot";
|
|
public string password="Unity1234";
|
|
}
|
|
} |