20 lines
334 B
C
20 lines
334 B
C
#pragma once
|
|
|
|
#include "Types.h"
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
typedef struct EmguiFontLayout
|
|
{
|
|
int16_t id;
|
|
int16_t x;
|
|
int16_t y;
|
|
int16_t width;
|
|
int16_t height;
|
|
int16_t xoffset;
|
|
int16_t yoffset;
|
|
int16_t xadvance;
|
|
|
|
} EmguiFontLayout;
|
|
|