diff options
| author | chai <chaifix@163.com> | 2019-08-14 22:50:43 +0800 | 
|---|---|---|
| committer | chai <chaifix@163.com> | 2019-08-14 22:50:43 +0800 | 
| commit | 15740faf9fe9fe4be08965098bbf2947e096aeeb (patch) | |
| tree | a730ec236656cc8cab5b13f088adfaed6bb218fb /Runtime/Filters/Pipeline.h | |
Diffstat (limited to 'Runtime/Filters/Pipeline.h')
| -rw-r--r-- | Runtime/Filters/Pipeline.h | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/Runtime/Filters/Pipeline.h b/Runtime/Filters/Pipeline.h new file mode 100644 index 0000000..a580c19 --- /dev/null +++ b/Runtime/Filters/Pipeline.h @@ -0,0 +1,16 @@ +#ifndef PIPELINE_H +#define PIPELINE_H + +#include "Runtime/BaseClasses/GameObject.h" + + +class Pipeline : public Unity::Component { +public:	 +	REGISTER_DERIVED_CLASS (Pipeline, Component) +	DECLARE_OBJECT_SERIALIZE (Pipeline) + +	Pipeline(MemLabelId label, ObjectCreationMode mode); +	 +}; + +#endif | 
