Guest User

va_stdafx.h

a guest
Jan 27th, 2021
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 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. struct FMath
  20. {
  21.     template<class T>
  22.     static T Sign(const T A);
  23.    
  24.     template<class T>
  25.     static T Abs(const T A);
  26. };
  27.  
  28. struct FVector
  29. {
  30.     float Size() const;
  31. };
  32.  
  33. template<typename ElementType, typename InAllocator>
  34. class TArray
  35. {
  36. public:
  37.     InAllocator::SizeType Num() const;
  38. };
  39.  
Advertisement
Add Comment
Please, Sign In to add comment