10 lines
272 B
C#
10 lines
272 B
C#
namespace EDJournal {
|
|
public class UnderAttackEntry : Entry {
|
|
private string target = null;
|
|
public string Target => target;
|
|
protected override void Initialise() {
|
|
target = JSON.Value<string>("Target") ?? "You";
|
|
}
|
|
}
|
|
}
|