Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #pragma once
  2.  
  3. #include <iostream>
  4. #include <fstream>
  5. #include <string>
  6. #include <vector>
  7.  
  8.  
  9. #define S4TEXT_VERSION 0.1
  10.  
  11. #define LOG_CONSOLE(x) std::cout << x << std::endl
  12. #define LOG_VERSION() std::cout << "Version: " << S4TEXT_VERSION << std::endl
  13.  
  14. class S4TEXT_ENTRY
  15. {
  16. public:
  17.     std::string str_EntryName = "";
  18.     std::string str_EntryText = "";
  19. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement