CTT/Unity/Assets/XNodeDemo/NewSkill/RunTime/SelectTarget.cs

50 lines
979 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using ET;
using MongoDB.Bson.Serialization.Attributes;
using Sirenix.OdinInspector;
using System;
using System.Collections.Generic;
namespace Cal
{
public enum SingleTargetType
{
,
,
,
modifier,
}
public enum TeamType
{
,
,
,
}
[Flags]
public enum TargetFlagType
{
= 0,
= 1,
= 1 << 1,
= 1 << 2,
= 1 << 3,
= 1 << 4,
= | | ,
}
[GUIColor(1f, 1f, 0.35f)]
[BsonIgnoreExtraElements]
public abstract class SelectTargetBase
{
//[LabelText("队伍类型")]
//public TeamType teamType;
//[LabelText("选定排除的状态")]
//public TargetFlagType flags;
#if SERVER
#endif
}
}