2023-08-22 19:08:45 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Gameplay.Common
|
|
|
|
|
|
{
|
|
|
|
|
|
public static class LayerDefine
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public const int UNIT = 6;
|
|
|
|
|
|
public const int GROUND = 7;
|
|
|
|
|
|
public const int Skill = 8;
|
2023-10-19 15:00:19 +08:00
|
|
|
|
public const int TeamEdit = 9;
|
2023-08-22 19:08:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|