コード例 #1
0
static duk_ret_t Light_IsUnacked(duk_context* ctx)
{
    Light* thisObj = GetThisWeakObject<Light>(ctx);
    bool ret = thisObj->IsUnacked();
    duk_push_boolean(ctx, ret);
    return 1;
}