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

15 lines
372 B
C#

using System.Collections.Generic;
using UnityEngine;
using static Gameplay.Level.LevelData;
namespace Gameplay.Character
{
public class CharacterLevelData
{
public Vector2Int BornPosition;
public AIType AIName;
public AttachAIType AttachAIName;
public CharacterToward NpcToward;
public List<PatrolInfo> PatrolInfos;
}
}