mirror of
https://github.com/Almamu/linux-wallpaperengine.git
synced 2025-09-14 13:56:48 +08:00

+ Added partial parsing of particles + Support for particle emitter parsing + Support for particle initializers parsing + Support for particle controlpoints parsing Signed-off-by: Alexis Maiquez <almamu@almamu.com>
21 lines
536 B
C++
21 lines
536 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);
|
|
|
|
irr::video::SColor atoSColor (const char *str);
|
|
irr::video::SColor atoSColor (const std::string& str);
|
|
};
|