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