mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
21 lines
278 B
C++
21 lines
278 B
C++
#include "export.h"
|
|
|
|
class EXPORT Simple {
|
|
int m_a;
|
|
double m_b;
|
|
public:
|
|
|
|
void set(int a, double b) {
|
|
m_a = a; m_b = b;
|
|
}
|
|
|
|
Simple(int a=3, double b=6.3) : m_a(a), m_b(b) {}
|
|
|
|
int a()
|
|
{ return m_a; }
|
|
|
|
double b()
|
|
{
|
|
return m_b;
|
|
}
|
|
};
|