Advertisement
Guest User

Untitled

a guest
Jan 28th, 2021
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. #define __VA_ARGS__
  2.  
  3. namespace UF
  4. {
  5.     enum
  6.     {
  7.         Category
  8.     };
  9. };
  10.  
  11. namespace UM
  12. {
  13.     enum
  14.     {
  15.         DisplayName
  16.     };
  17. };
  18.  
  19. namespace UC
  20. {
  21.     enum
  22.     {
  23.         ClassGroup,
  24.         BlueprintType
  25.     };
  26. };
  27.  
  28. struct FMath
  29. {
  30.     template<class T>
  31.     static T Sign(const T A);
  32.    
  33.     template<class T>
  34.     static T Abs(const T A);
  35. };
  36.  
  37. struct FVector
  38. {
  39.     float Size() const;
  40. };
  41.  
  42. template<typename ElementType, typename InAllocator>
  43. class TArray
  44. {
  45. public:
  46.     InAllocator::SizeType Num() const;
  47. };
  48.  
  49. namespace T {};
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement