networking

This commit is contained in:
2025-07-13 15:47:42 +03:00
parent f5b26be510
commit a9c28b8940
345 changed files with 142130 additions and 174 deletions

30
fgui/widget.cpp Normal file
View File

@@ -0,0 +1,30 @@
#include "fgui/widget.h"
#include "fgui/fgui.h"
CFGUI_Widget::CFGUI_Widget()
{
IFGUI::AppendWidget(this);
}
CFGUI_Widget::~CFGUI_Widget()
{
}
void CFGUI_Widget::SetPosition( int32_t nX, int32_t nY )
{
m_iPosition[0] = nX;
m_iPosition[1] = nY;
}
void CFGUI_Widget::SetSize( uint32_t nX, uint32_t nY )
{
m_iSize[0] = nX;
m_iSize[1] = nY;
}
void CFGUI_Widget::SetParent( CFGUI_Widget *pParent )
{
}