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.
27 lines
650 B
27 lines
650 B
using System; |
|
using System.Collections; |
|
using System.Collections.Generic; |
|
using AX.MessageSystem; |
|
using UnityEngine; |
|
|
|
/// <summary> |
|
/// 知情人灾情库记录 |
|
/// </summary> |
|
public class InsiderDisasterRecord : DisasterLibraryRecord |
|
{ |
|
public InsiderDisaster insiderDisaster = new InsiderDisaster(); |
|
|
|
public override void DLRecord(IMessage obj) |
|
{ |
|
DisasterRecord(insiderDisaster); |
|
} |
|
|
|
public override void DisasterRecord(Disaster disaster) |
|
{ |
|
base.DisasterRecord(disaster); |
|
|
|
//知情人没有特殊的初始属性值需要记录 |
|
|
|
DisasterLibraryFile.Instance.DisasterRecord(disaster); |
|
} |
|
}
|
|
|