7 lines
No EOL
176 B
Python
7 lines
No EOL
176 B
Python
from abc import ABC, abstractmethod
|
|
from engine.shared import DCCEmulatedHost
|
|
|
|
class InitPlugin(ABC):
|
|
@abstractmethod
|
|
def init(self, emu: DCCEmulatedHost):
|
|
pass |