DYTSrouce/src/scene/ui/BackGroundWidget.h
2025-01-13 01:35:51 +08:00

15 lines
295 B
C++

#ifndef BackGroundWidget_H_
#define BackGroundWidget_H_
#include <osgWidget/Widget>
#include <string>
class BackGroundWidget : public osgWidget::Widget
{
public:
BackGroundWidget(const std::string& name, float w, float h, const std::string& fileName);
~BackGroundWidget(void);
};
#endif