This is the AMP version of this page.
If you want to load the real page instead, click this text.

Help! System.Void SkillCD(System.Boolean value) HELP

Solution
If it's static:
C++:
static void (*o_SkillCD)(bool value);
static void SkillCD(bool value) {
        LOGI("Called Skill Cooldown");
        return o_SkillCD(  true );
}

If not:

C++:
void (*o_SkillCD)(void* _this, bool value);
void SkillCD(void* _this, bool value) {
    if (_this != nullptr) {
        LOGI("Called Skill Cooldown");
        return o_SkillCD( _this , true );
    }
}
If it's static:
C++:
static void (*o_SkillCD)(bool value);
static void SkillCD(bool value) {
        LOGI("Called Skill Cooldown");
        return o_SkillCD(  true );
}

If not:

C++:
void (*o_SkillCD)(void* _this, bool value);
void SkillCD(void* _this, bool value) {
    if (_this != nullptr) {
        LOGI("Called Skill Cooldown");
        return o_SkillCD( _this , true );
    }
}
 
Solution