Frame/Assets/Scripts/Data/PassiveResponse/S2C_BossStartAttack.cs

20 lines
549 B
C#
Raw Normal View History

2024-05-05 17:02:33 +08:00
using System;
using System.Collections.Generic;
namespace Game.Data
{
public class S2C_BossStartAttack : PassiveResponse
{
public new S2C_BossStartAttackInfo data;
public class S2C_BossStartAttackInfo
{
public string lunId;
public int attack_count;
public int attack_seconds;
public DateTime attack_time;
public int[] attack_room;
public List<S2C_RoomDataRefresh.RoomInfo> roomList = new List<S2C_RoomDataRefresh.RoomInfo>();
}
}
}