summaryrefslogtreecommitdiff
path: root/Runtime/GfxDevice/GfxDisplayList.h
blob: d245abfe2f722490a491bf91169bc165eb48062a (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include "Runtime/Threads/ThreadSharedObject.h"

class GfxDisplayList : public ThreadSharedObject
{
public:
	virtual void Call() = 0;
};