Fix Basic Rogue Event

This commit is contained in:
Somebody
2024-08-10 15:16:29 +08:00
parent fe7c51c996
commit b8e7b41d5e
37 changed files with 225 additions and 101 deletions

View File

@@ -0,0 +1,9 @@
namespace EggLink.DanhengServer.Data.Config.Scene;
public class MonsterInfo : PositionInfo
{
public int NPCMonsterID { get; set; }
public int EventID { get; set; }
public int FarmElementID { get; set; }
public bool IsClientOnly { get; set; }
}