Wrestling with the compiler to pass these shared_ptr's

This commit is contained in:
MitchellHansen
2017-02-04 22:34:09 -08:00
parent a01b089d12
commit fa047f9e3a
10 changed files with 102 additions and 85 deletions

18
src/LightHandle.cpp Normal file
View File

@@ -0,0 +1,18 @@
#include "LightHandle.h"
LightHandle::LightHandle() {
// init an empty light
LightController::PackedData data;
data.direction_cartesian = sf::Vector3f(0, 0, 0);
data.position = sf::Vector3f(0, 0, 0);
data.rgbi = sf::Vector4f(0, 0, 0, 0);
//light_controller.create_light(data, light_name);
}
LightHandle::~LightHandle() {
}