pikmin2/include/Condition.h
2022-10-26 01:12:41 +01:00

12 lines
147 B
C++

#ifndef _CONDITION_H
#define _CONDITION_H
template <typename T>
struct Condition {
virtual bool satisfy(T*) = 0; // _08
// VTBL _00
};
#endif