Added shared library support.

This commit is contained in:
2024-07-24 01:36:20 -07:00
parent 1b70383448
commit 8e7cc39000
122 changed files with 298 additions and 298 deletions

View File

@@ -4,7 +4,7 @@
namespace ehs
{
class Color3
class EHS_LIB_IO Color3
{
public:
float r;
@@ -13,13 +13,13 @@ namespace ehs
Color3();
Color3(const float scalar);
Color3(float scalar);
Color3(const float r, const float g, const float b);
Color3(float r, float g, float b);
Color3(const Color3& color);
Color3& operator=(const float scalar);
Color3& operator=(float scalar);
Color3& operator=(const Color3& color);
@@ -27,9 +27,9 @@ namespace ehs
bool operator!=(const Color3& color) const;
float operator[](const UInt_64 i) const;
float operator[](UInt_64 i) const;
float& operator[](const UInt_64 i);
float& operator[](UInt_64 i);
Color3& operator*=(const Color3& color);