1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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