14 lines
158 B
C++
14 lines
158 B
C++
#include "callbacks.h"
|
|
|
|
int testCounter;
|
|
|
|
void TestClass::callbackTest(int arg)
|
|
{
|
|
testCounter += arg;
|
|
}
|
|
|
|
void callbackTest(int arg)
|
|
{
|
|
testCounter += arg;
|
|
}
|