forked from Shardstone/trail-into-darkness
added in-game logger
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Jovian.InGameLogging {
|
||||
[Serializable]
|
||||
public sealed class GameLogSaveData {
|
||||
public List<LogEntry> entries;
|
||||
|
||||
public GameLogSaveData() {
|
||||
entries = new List<LogEntry>();
|
||||
}
|
||||
|
||||
public GameLogSaveData(List<LogEntry> entries) {
|
||||
this.entries = entries;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user