diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/ILogSource.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/ILogSource.cs | 10 |
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();
+ }
+}
|