mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
85827b28ff
* d_a_vrbox / d_a_kytag02 / d_a_obj_eff OK * some std header setups * f_pc / profile cleanup * setup cull data * remove asm * d_a_suspend OK
18 lines
232 B
C++
18 lines
232 B
C++
#ifndef MSL_UTILITY_H_
|
|
#define MSL_UTILITY_H_
|
|
|
|
namespace std {
|
|
template <class T1, class T2>
|
|
struct pair {
|
|
T1 first;
|
|
T2 second;
|
|
|
|
pair() {
|
|
first = T1();
|
|
second = T2();
|
|
}
|
|
};
|
|
} // namespace std
|
|
|
|
#endif
|