Starbound/source/platform/StarDesktopService.hpp
2025-03-21 22:23:30 +11:00

17 lines
238 B
C++

#ifndef STAR_DESKTOP_SERVICE_HPP
#define STAR_DESKTOP_SERVICE_HPP
namespace Star {
STAR_CLASS(DesktopService);
class DesktopService {
public:
~DesktopService() = default;
virtual void openUrl(String const& url) = 0;
};
}
#endif