Advertisement
Guest User

Untitled

a guest
Feb 25th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.10 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. class Entity{
  4.     virtual std::string GetName() = 0;
  5. };
  6.  
  7. int main(){
  8.    
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement