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.
24 lines
591 B
24 lines
591 B
|
|
/// <summary> |
|
/// 克隆游戏对象信息基类 |
|
/// </summary> |
|
public class CloneGameObjInfo : BaseGameObjInfo |
|
{ |
|
public string buildNum;//楼号 |
|
public int floorNum;//层号 |
|
public int interlayerNum;//夹层号,0表示不是夹层,1表示第一个夹层 |
|
|
|
public int Layer; |
|
|
|
public bool ShoworHidden;//显示或隐藏 |
|
public string FullName; |
|
public string SpecialTag = ""; |
|
} |
|
|
|
public struct SpreadObjHandle |
|
{ |
|
public long gameObjId; |
|
public CloneObjType gameObjType; |
|
public bool isShow;//是否显示:true表示显示出来;false表示隐藏 |
|
} |
|
|
|
|