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:
24
KREngine/KREngine/Classes/KRDirectionalLight.h
Normal file
24
KREngine/KREngine/Classes/KRDirectionalLight.h
Normal 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
|
||||
Reference in New Issue
Block a user