Blender V4.3
script_ops.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2008 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#include <cmath>
10#include <cstdlib>
11
12#include "WM_api.hh"
13
14#include "script_intern.hh"
15
16/* ************************** registration **********************************/
17
23
24void script_keymap(wmKeyConfig * /*keyconf*/)
25{
26 /* Script space is deprecated, and doesn't need a keymap */
27}
void SCRIPT_OT_reload(wmOperatorType *ot)
void SCRIPT_OT_python_file_run(wmOperatorType *ot)
void script_operatortypes()
Definition script_ops.cc:18
void script_keymap(wmKeyConfig *)
Definition script_ops.cc:24
void WM_operatortype_append(void(*opfunc)(wmOperatorType *))