ayon-core/openpype/hosts/unreal/api/plugin.py
2022-03-14 11:36:17 +01:00

17 lines
370 B
Python

# -*- coding: utf-8 -*-
from abc import ABC
from openpype.pipeline import (
LegacyCreator,
LoaderPlugin,
)
class Creator(LegacyCreator):
"""This serves as skeleton for future OpenPype specific functionality"""
defaults = ['Main']
class Loader(LoaderPlugin, ABC):
"""This serves as skeleton for future OpenPype specific functionality"""
pass