2025-03-31 11:16:52 +08:00
|
|
|
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";
|
2025-05-30 14:50:46 +08:00
|
|
|
public string mainDomainVersion ="";
|
2025-03-31 11:16:52 +08:00
|
|
|
public string username="UnityHot";
|
|
|
|
|
public string password="Unity1234";
|
|
|
|
|
}
|
|
|
|
|
}
|