linux-wallpaperengine/WallpaperEngine/Core/Core.h
Alexis Maiquez 654918904a ~ Changed namespace names for wp::core and wp to a more suited name
Signed-off-by: Alexis Maiquez <almamu@almamu.com>
2019-08-15 01:53:40 +02:00

21 lines
549 B
C++

#pragma once
#include <string>
#include <irrlicht/irrlicht.h>
namespace WallpaperEngine::Core
{
irr::core::vector3df ato3vf (const char *str);
irr::core::vector2df ato2vf (const char *str);
irr::core::vector3df ato3vf (const std::string& str);
irr::core::vector2df ato2vf (const std::string& str);
irr::video::SColorf atoSColorf (const char *str);
irr::video::SColorf atoSColorf (const std::string& str);
irr::video::SColor atoSColor (const char *str);
irr::video::SColor atoSColor (const std::string& str);
};