Creating object model to store lights returned by FBX import in preparation of deferred rendering.
--HG-- extra : convert_revision : svn%3A7752d6cf-9f14-4ad2-affc-04f1e67b81a5/trunk%4029
This commit is contained in:
26
KREngine/KREngine/Classes/KRDirectionalLight.cpp
Normal file
26
KREngine/KREngine/Classes/KRDirectionalLight.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
//
|
||||
// KRDirectionalLight.cpp
|
||||
// KREngine
|
||||
//
|
||||
// Created by Kearwood Gilbert on 12-04-05.
|
||||
// Copyright (c) 2012 Kearwood Software. All rights reserved.
|
||||
//
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#import "KRDirectionalLight.h"
|
||||
|
||||
KRDirectionalLight::KRDirectionalLight(std::string name) : KRLight(name)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
KRDirectionalLight::~KRDirectionalLight()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool KRDirectionalLight::save(const std::string& path)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
Reference in New Issue
Block a user