basic_data.hpp is now a real interface.

This commit is contained in:
Pcornat 2026-01-06 23:11:21 +01:00
commit f2102c3708
Signed by: Pcornat
GPG key ID: E0326CC678A00BDD

View file

@ -19,7 +19,7 @@ namespace data {
virtual void window_size(int width, int height) = 0;
[[nodiscard]] virtual std::string get_name() const noexcept = 0;
[[nodiscard]] virtual const std::string &get_name() const noexcept = 0;
};
}