Ilya_Bykonya

Untitled

Jun 8th, 2024
469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | Source Code | 0 0
  1.  
  2. namespace sh {
  3.     struct ILocalizationMap {
  4.         virtual std::optional<std::string> get_translation(hash_t lang, hash_t key) const = 0;
  5.         virtual ILocalizationMap() = default;
  6.     };
  7. }
Advertisement
Add Comment
Please, Sign In to add comment