Wrestling with the compiler to pass these shared_ptr's
This commit is contained in:
18
src/LightHandle.cpp
Normal file
18
src/LightHandle.cpp
Normal 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() {
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user