目录为:Assets/Scripts/GameEntity/目录下
INpc.cs
这是Npc的接口类
using UnityEngine;
using System.Collections;
using System;
//Npc的接口
public class INpc: Ientity
{
//调用Ientity的构造函数
public INpc(UInt64 sGUID, EntityCampType campType)
:base(sGUID, campType)
{
}
}