Example Usage
bool MyCoolMethod()
{
return true;
}
// renders as "My Cool Method Enabled - DETECTED"
// because we returned true
AddMethod(MyCoolMethod, "My Cool Method");
bool MyCoolMethod()
{
return true;
}
// renders as "My Cool Method Enabled - DETECTED"
// because we returned true
AddMethod(MyCoolMethod, "My Cool Method");