1 parent ccdd430 commit 64f93c4Copy full SHA for 64f93c4
1 file changed
steamworks/__init__.py
@@ -29,6 +29,7 @@
29
from steamworks.interfaces.userstats import SteamUserStats
30
from steamworks.interfaces.utils import SteamUtils
31
from steamworks.interfaces.workshop import SteamWorkshop
32
+from steamworks.interfaces.microtxn import SteamMicroTxn
33
34
os.environ['LD_LIBRARY_PATH'] = os.getcwd()
35
@@ -130,6 +131,7 @@ def _reload_steamworks_interfaces(self) -> None:
130
131
self.UserStats = SteamUserStats(self)
132
self.Utils = SteamUtils(self)
133
self.Workshop = SteamWorkshop(self)
134
+ self.MicroTxn = SteamMicroTxn(self)
135
136
137
def initialize(self) -> bool:
0 commit comments