mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2025-12-14 10:48:53 +01:00
13 lines
241 B
C++
13 lines
241 B
C++
/* This file is subject to the terms and conditions defined in
|
|
* file 'LICENSE.txt', which is part of this source code package.
|
|
*/
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class Version
|
|
{
|
|
public:
|
|
static std::string GetString();
|
|
};
|