You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
405 B
19 lines
405 B
2 years ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public enum ForcibleType
|
||
|
{
|
||
|
None,//默认
|
||
|
ForcibleDoor,//普通破拆门
|
||
|
RoolingDoor,//卷帘门
|
||
|
FactoryDoor,//工厂破拆门
|
||
|
FirePassDoor,//消防通道破拆门
|
||
|
}
|
||
|
public class ForcibleEntryDisaster : Disaster
|
||
|
{
|
||
|
public ForcibleType ForcibleType;
|
||
|
public float Hight;
|
||
|
public float Width;
|
||
|
}
|