Files
gtav-src/tools_ng/bin/coding/python/print_parse.bat
T
2025-09-29 00:52:08 +02:00

17 lines
192 B
Batchfile
Executable File

@echo off
setlocal
set PARSE=
set CUSTOM=
call %1
if defined PARSE (
echo Parse {
echo %PARSE%
echo }
)
if defined CUSTOM (
echo Custom {
echo %CUSTOM%
echo }
)
endlocal