13 lines
189 B
C
13 lines
189 B
C
|
/* date = March 27th 2022 0:50 pm */
|
||
|
|
||
|
#ifndef LUMENARIUM_EDITOR_H
|
||
|
#define LUMENARIUM_EDITOR_H
|
||
|
|
||
|
struct Editor
|
||
|
{
|
||
|
v2 window_dim;
|
||
|
Editor_Renderer renderer;
|
||
|
};
|
||
|
|
||
|
#endif //LUMENARIUM_EDITOR_H
|