13 lines
259 B
C++
13 lines
259 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace dropshell {
|
|
|
|
// Version information
|
|
const std::string VERSION = "1.0.0";
|
|
const std::string RELEASE_DATE = "2025-04-21";
|
|
const std::string AUTHOR = "j842";
|
|
const std::string LICENSE = "MIT";
|
|
|
|
} // namespace dropshell
|