NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Character/Data/CharacterLevelData.cs

15 lines
372 B
C#
Raw Normal View History

2023-10-19 15:00:19 +08:00
using System.Collections.Generic;
2023-08-22 19:08:45 +08:00
using UnityEngine;
using static Gameplay.Level.LevelData;
namespace Gameplay.Character
{
public class CharacterLevelData
{
public Vector2Int BornPosition;
public AIType AIName;
public AttachAIType AttachAIName;
2023-10-19 15:00:19 +08:00
public CharacterToward NpcToward;
public List<PatrolInfo> PatrolInfos;
2023-08-22 19:08:45 +08:00
}
}