mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-22 23:48:08 -05:00
10 lines
214 B
C++
10 lines
214 B
C++
#define EXPORT_NAME TestDependency
|
|
#include <Geode/Geode.hpp>
|
|
|
|
API_INIT("com.geode.testdep")
|
|
|
|
class TestDependency {
|
|
public:
|
|
static void depTest(GJGarageLayer* gl);
|
|
// API_DECL(&TestDependency::depTest, gl);
|
|
};
|