Files
omath/source/color.cpp
2024-09-03 21:23:25 +03:00

18 lines
192 B
C++

//
// Created by vlad on 2/4/24.
//
#include "omath/color.h"
#include <algorithm>
#include <cmath>
namespace omath::color
{
Color::Color() : Vector4(0.f, 0.f, 0.f, 0.f)
{
}
}