sol2/examples/config.cpp
2016-03-11 11:55:34 -05:00

28 lines
623 B
C++

#include <sol.hpp>
#include <string>
#include <iostream>
// shows how to load basic data to a struct
struct config {
std::string name;
int width;
int height;
void print() {
std::cout << "Name: " << name << '\n'
<< "Width: " << width << '\n'
<< "Height: " << height << '\n';
}
};
int main() {
sol::state lua;
config screen;
lua.script_file("config.lua");
screen.name = lua.get<std::string>("name");
screen.width = lua.get<int>("width");
screen.height = lua.get<int>("height");
screen.print();
}