17 lines
427 B
C#
17 lines
427 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using static Gameplay.Level.LevelData;
|
|
|
|
namespace Gameplay.Unit
|
|
{
|
|
public class UnitLevelData
|
|
{
|
|
public int LocalId;
|
|
public Vector2Int BornPosition;
|
|
public AIType AIName;
|
|
public AttachAIType AttachAIName;
|
|
public CharacterToward NpcToward;
|
|
public List<PatrolInfo> PatrolInfos;
|
|
public List<int> GroupInfos;
|
|
}
|
|
} |