This commit is contained in:
2025-04-17 04:52:48 +08:00
commit 9985b73dc1
3708 changed files with 2387532 additions and 0 deletions

View File

@ -0,0 +1,13 @@
# Copyright Epic Games, Inc. All Rights Reserved.
class RBFAPI(object):
"""
Base class for creating RBF API classes
"""
UPGRADE_AVAILABLE = False
VERSION = "0.0.0"
def __init__(self, view=False, parent=None, file_path=None):
super(RBFAPI, self).__init__()
self._view = view
self._parent = parent
self._file_path = file_path