Advertisement
Guest User

Main.cxx

a guest
Apr 25th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. #include "iostream"
  2. #include "conio.h"
  3. #include "typeinfo"
  4. #include <Engine/UObject.h>
  5.  
  6. using namespace std;
  7.  
  8. class UObject
  9. {
  10. public:
  11.     UObject()
  12.     {
  13.     }
  14.    
  15.     ~UObject()
  16.     {
  17.     }
  18.    
  19. };
  20.  
  21. class AActor : public UObject
  22. {
  23. public:
  24.     AActor(){}
  25.     ~AActor(){}
  26.    
  27. };
  28.  
  29. using namespace std;
  30.  
  31.  int main()
  32.  {
  33.    
  34.    
  35.    
  36.    
  37.     return 0;
  38.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement