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:
kearwood
2012-04-05 23:09:41 +00:00
parent 384068eb9c
commit 33c5b754de
14 changed files with 399 additions and 253 deletions

View File

@@ -0,0 +1,24 @@
//
// KRDirectionalLight.h
// KREngine
//
// Created by Kearwood Gilbert on 12-04-05.
// Copyright (c) 2012 Kearwood Software. All rights reserved.
//
#ifndef KREngine_KRDirectionalLight_h
#define KREngine_KRDirectionalLight_h
#import "KRLight.h"
class KRDirectionalLight : public KRLight {
public:
KRDirectionalLight(std::string name);
~KRDirectionalLight();
virtual bool save(const std::string& path);
};
#endif