File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 1+ // **************************************************************** //
2+ //
3+ // Copyright (c) RimuruDev. All rights reserved.
4+ // Contact me:
5+ // - Gmail: rimuru.dev@gmail.com
6+ // - GitHub: https://github.com/RimuruDev
7+ // - LinkedIn: https://www.linkedin.com/in/rimuru/
8+ // - GitHub Organizations: https://github.com/Rimuru-Dev
9+ //
10+ // **************************************************************** //
11+
12+ namespace AbyssMoth . Internal . Codebase . Infrastructure . StorageService
13+ {
14+ public interface ISaveLoadService
15+ {
16+ public void Save < TData > ( TData data , string key ) ;
17+ public TData Load < TData > ( string key , TData defaultValue = default ) ;
18+ #if UNITY_EDITOR
19+ public void SetCustomPathInEditor ( string customPath ) ;
20+ #endif
21+ }
22+ }
You can’t perform that action at this time.
0 commit comments