summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/ILogSource.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/ILogSource.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/ILogSource.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/ILogSource.cs b/Client/Assets/Scripts/XMainClient/ILogSource.cs
new file mode 100644
index 00000000..3b6756c1
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/ILogSource.cs
@@ -0,0 +1,10 @@
+using System;
+using System.Collections.Generic;
+
+namespace XMainClient
+{
+ internal interface ILogSource
+ {
+ List<ILogData> GetLogList();
+ }
+}