[drape] context stub. It will be contans Draw* methods. Will be specified by Komяpa

This commit is contained in:
ExMix 2013-11-04 13:49:39 +03:00 committed by Alex Zolotarev
parent c3efdbace3
commit 9366ae7164
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#include "engine_context.hpp"
namespace df
{
EngineContext::EngineContext()
{
}
}

View file

@ -0,0 +1,11 @@
#pragma once
namespace df
{
class EngineContext
{
public:
EngineContext();
/// TODO котяра обещал описать данный интерфейс
};
}