The Snivy Video Game Is Complete

This commit is contained in:
2025-12-29 05:10:56 -05:00
parent d0f9669b8b
commit 62b988a678
705 changed files with 210576 additions and 162 deletions

16
src/types.h Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
#include "glm/ext/vector_float4.hpp"
namespace game
{
enum MeasurementSystem
{
METRIC,
IMPERIAL
};
constexpr auto KG_TO_LB = 2.20462;
constexpr auto WHITE = glm::vec4();
constexpr auto GRAY = glm::vec4(0.5f, 0.5f, 0.5f, 1.0f);
}