mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
11 lines
198 B
C++
11 lines
198 B
C++
#include "export.h"
|
|
|
|
class EXPORT A {
|
|
public:
|
|
// A() { }
|
|
virtual int m1() { return 1; }
|
|
virtual int m2() { return 2; }
|
|
virtual int m3() { return 3; }
|
|
};
|
|
|
|
EXPORT A *make(int type);
|