// // macro.h // gameutils // // Created by Sam Jaffe on 8/19/16. // #pragma once #define CONCAT2(A, B) A##B #define CONCAT(A, B) CONCAT2(A, B) #define STRING2(A) #A #define STRING(A) STRING2(A)