This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric/plugin/shader_plugin.h

13 lines
224 B
C
Raw Normal View History

2019-12-13 17:45:27 +08:00
#ifndef SHADER_PLUGIN_H
#define SHADER_PLUGIN_H
#include "context_holder.h"
class ShaderPlugin : public ContextHolder {
public:
2019-12-13 17:48:37 +08:00
ShaderPlugin(Context *context) : ContextHolder(context) {}
2019-12-13 17:45:27 +08:00
};
#endif // SHADER_PLUGIN_H