Program Listing for File config.h

Return to documentation for file (PrismEngine/src/config.h)

#pragma once

namespace prism {

    struct Version
    {
        int MAJOR;
        int MINOR;
        int PATCH;
    };

    struct PrismVersion {
        static constexpr int MAJOR = 1;
        static constexpr int MINOR = 1;
        static constexpr int PATCH = 0;
        static constexpr const char* STRING = "1.1.0";
    };

    struct PrismInfo {
        static constexpr const char* NAME = "PrismEngine";
        static constexpr const char* DESCRIPTION = "modern real-time 3D engine on Vulkan with ECS API";
    };
}