Implemented notification system needed for occlusion culling and transparency sorting
--HG-- extra : convert_revision : svn%3A7752d6cf-9f14-4ad2-affc-04f1e67b81a5/trunk%4072
This commit is contained in:
23
KREngine/KREngine/Classes/KRContextObject.h
Normal file
23
KREngine/KREngine/Classes/KRContextObject.h
Normal file
@@ -0,0 +1,23 @@
|
||||
//
|
||||
// KRContextObject.h
|
||||
// KREngine
|
||||
//
|
||||
// Created by Kearwood Gilbert on 2012-08-16.
|
||||
// Copyright (c) 2012 Kearwood Software. All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef KRCONTEXTOBJECT_H
|
||||
#define KRCONTEXTOBJECT_H
|
||||
|
||||
class KRContext;
|
||||
|
||||
class KRContextObject {
|
||||
|
||||
public:
|
||||
KRContextObject(KRContext &context);
|
||||
~KRContextObject();
|
||||
protected:
|
||||
KRContext *m_pContext;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user