mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
Beefy2D windows enhancements
This commit is contained in:
parent
6045137bce
commit
2428fe8e57
9 changed files with 125 additions and 52 deletions
|
@ -364,7 +364,12 @@ BF_EXPORT void BF_CALLTYPE BFWindow_GetPlacement(BFWindow* window, int* normX, i
|
|||
|
||||
BF_EXPORT void BF_CALLTYPE BFWindow_Resize(BFWindow* window, int x, int y, int width, int height, int showKind)
|
||||
{
|
||||
window->Resize(x, y, width, height, showKind);
|
||||
window->Resize(x, y, width, height, (BFWindow::ShowKind)showKind);
|
||||
}
|
||||
|
||||
BF_EXPORT void BF_CALLTYPE BFWindow_Show(BFWindow* window, BFWindow::ShowKind showKind)
|
||||
{
|
||||
window->Show(showKind);
|
||||
}
|
||||
|
||||
BF_EXPORT void BF_CALLTYPE BFWindow_SetForeground(BFWindow* window)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue