mirror of
https://github.com/Almamu/linux-wallpaperengine.git
synced 2025-07-16 22:32:25 +08:00
18 lines
424 B
C++
18 lines
424 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <irrlicht/irrlicht.h>
|
|
|
|
namespace wp::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);
|
|
};
|