00 1.0.11更新

This commit is contained in:
2025-04-14 14:40:32 +08:00
parent c0b38b6524
commit 902c7b1c5f
5 changed files with 61 additions and 16 deletions

View File

@@ -1,15 +1,25 @@
using System;
using System.Collections.Generic;
using Sirenix.OdinInspector;
using UnityEditor;
using UnityEngine;
using UnityEngine.Serialization;
namespace Stary.Evo
{
[CreateAssetMenu(fileName = "MainDomainAll", menuName = "Evo/Create MainDomainAll")]
public class MainDomainAll : ScriptableObject
{
public string[] domainAll;
}
public VideoDomainEntity[] domainAll;
}
[Serializable]
public struct VideoDomainEntity
{
public bool isVideo;
public string domainName;
}
}