Documented font

This commit is contained in:
2022-10-24 22:58:27 -07:00
parent 7ee91c3777
commit 1f78d4f95e
4 changed files with 43 additions and 8 deletions

View File

@ -17,9 +17,12 @@ namespace Dawn {
Mesh mesh;
Texture *texture;
/**
* UI Sprite Constructor, use the UIElement / UIComponent create instead.
*
* @param canvas Canvas that this sprite belongs to.
*/
UISprite(UICanvas &canvas);
// void update() override;
void drawSelf(UIShader &uiShader, glm::mat4 selfTransform) override;
};
}