Advertisement
chopical

C_Inventory

May 26th, 2020
1,238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. #include <iostream>
  2. #include <deque>
  3. #include <string>
  4.  
  5. struct item{
  6.     std::string Name,icon;
  7.     bool isSelectable=true;
  8.     std::deque<item>
  9. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement