using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TouchSocket.Core
{
///
/// 优化平台
///
[Flags]
public enum OptimizedPlatforms
{
///
/// 无特殊优化
///
None=0,
///
/// 针对Unity2020及以下优化。
/// 一般来说,当在unity2020及以下版本,中执行il2cpp编译时,需要设置该值。
///
Unity = 1
}
}