summaryrefslogtreecommitdiffstats
path: root/test/unit/graphics/engine/engine_mock.h
blob: 1a15eca52988b0ca5d4ccd1a37ee8e2d86b70942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "graphics/engine/engine.h"

#include <gmock/gmock.h>

class CEngineMock : public Gfx::CEngine
{
public:
    CEngineMock() : Gfx::CEngine(nullptr) {}

    MOCK_METHOD0(GetPause, bool());

    MOCK_METHOD0(GetEyePt, Math::Vector());
    MOCK_METHOD0(GetLookatPt, Math::Vector());
};