You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
706 B
20 lines
706 B
#ifndef EDITOR_H
|
|
#define EDITOR_H
|
|
|
|
#include "linmath.h"
|
|
|
|
void editor_init(void);
|
|
void editor_update(float dt);
|
|
void editor_toggle(void);
|
|
void editor_cleanup(void);
|
|
int editor_debugvar_slot_create(const char* name, int value_type);
|
|
void editor_debugvar_slot_remove(int index);
|
|
void editor_debugvar_slot_set_float(int index, float value);
|
|
void editor_debugvar_slot_set_int(int index, int value);
|
|
void editor_debugvar_slot_set_double(int index, double value);
|
|
void editor_debugvar_slot_set_vec2(int index, vec2* value);
|
|
void editor_debugvar_slot_set_vec3(int index, vec3* value);
|
|
void editor_debugvar_slot_set_vec4(int index, vec4* value);
|
|
void editor_debugvar_slot_set_quat(int index, quat* value);
|
|
|
|
#endif
|
|
|