Files
spectrumAnalyzer/xWindows.h
T
EmsiaetKadosh edcc095979 Changes
2025-01-21 15:41:32 +08:00

16 lines
270 B
C++

//
// Created by EmsiaetKadosh on 25-1-18.
//
#pragma once
#include "Window.h"
class StartWindow : public Window {
public:
StartWindow() {
Button* button = new Button(0, 0, 0.4, 0.08, Location::CENTER, TranslatableText(L"123"));
widgets.push_back(button);
}
};