macro.h 201 B

1234567891011121314
  1. //
  2. // macro.h
  3. // gameutils
  4. //
  5. // Created by Sam Jaffe on 8/19/16.
  6. //
  7. #pragma once
  8. #define CONCAT2(A, B) A##B
  9. #define CONCAT(A, B) CONCAT2(A, B)
  10. #define STRING2(A) #A
  11. #define STRING(A) STRING2(A)