OpenGothic
Open source reimplementation of Gothic I and II
Loading...
Searching...
No Matches
parser.h
Go to the documentation of this file.
1#pragma once
2
3#include <Tempest/Vec>
4#include "graphics/material.h"
5
6namespace Parser {
7 Tempest::Vec2 loadVec2 (std::string_view src);
8 Tempest::Vec3 loadVec3 (std::string_view src);
9 Material::AlphaFunc loadAlpha(std::string_view src);
10 }
11
Definition parser.h:6
Tempest::Vec3 loadVec3(std::string_view src)
Definition parser.cpp:24
Tempest::Vec2 loadVec2(std::string_view src)
Definition parser.cpp:6
Material::AlphaFunc loadAlpha(std::string_view src)
Definition parser.cpp:44