mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 12:46:03 +08:00
16 lines
369 B
C#
16 lines
369 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static System.Runtime.InteropServices.JavaScript.JSType;
|
|
|
|
namespace EggLink.DanhengServer.Data.Config
|
|
{
|
|
public class NpcInfo : PositionInfo
|
|
{
|
|
public int NPCID { get; set; }
|
|
public bool IsClientOnly { get; set; }
|
|
}
|
|
}
|