Files
kraken/kraken/KRContextObject.h
Kearwood Gilbert ef5b940eaf Windows port WIP
--HG--
branch : feature-windows-support
2017-01-08 21:20:53 -08:00

26 lines
413 B
C++
Executable File

//
// 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();
KRContext &getContext() const;
protected:
KRContext *m_pContext;
};
#endif