mirror of
https://github.com/projectPiki/pikmin2.git
synced 2024-11-26 23:00:27 +00:00
12 lines
147 B
C++
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
|