aboutsummaryrefslogtreecommitdiff
path: root/src/mglpp.cpp
blob: 6bf6307aee7cba6598088bae3ef9e31e6db8e2dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "../include/mglpp/mglpp.hpp"
extern "C" {
#include <mgl/mgl.h>
}

namespace mgl {
    Init::Init() {
        mgl_init();
    }

    Init::~Init() {
        mgl_deinit();
    }
}