yeti3dpro-editor/source/editor.hpp

19 lines
295 B
C++
Raw Permalink Normal View History

2024-10-14 11:53:16 -05:00
#ifndef _EDITOR_HPP_
#define _EDITOR_HPP_
#include <SDL3/SDL.h>
#include "imgui.h"
extern SDL_Window *window;
extern SDL_Renderer *renderer;
void quit(int code);
void die(const char *fmt, ...);
void editor_init(void);
void editor_main(void);
void editor_quit(void);
#endif // _EDITOR_HPP_