This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers | |
| // Windows Header Files | |
| #include <windows.h> | |
| #include "tchar.h" | |
| #include <iostream> | |
| #include <string> | |
| #include <string_view> | |
| #include <chrono> | |
| #include <cassert> | |
| #include <array> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # see https://github.com/CEXT-Dan/PyRx | |
| import traceback | |
| from pyrx import Db, Ed, Ge, Ap, Rx, Gs | |
| import os | |
| # add mod to path | |
| def make_mod_path(filepath, suffix="_mod_"): | |
| base, extension = os.path.splitext(filepath) | |
| new_filepath = f"{base}{suffix}{extension}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # see https://github.com/CEXT-Dan/PyRx | |
| import traceback | |
| from pyrx import Db, Ed, Ge, Ap, Rx, Gs | |
| import os | |
| # add mod to path | |
| def make_mod_path(filepath, suffix="_mod_"): | |
| base, extension = os.path.splitext(filepath) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //----------------------------------------------------------------------------- | |
| //----- ObjectARX EntryPoint | |
| class wxArx : public AcRxArxApp | |
| { | |
| public: | |
| wxArx() : AcRxArxApp() | |
| { | |
| } | |
| virtual AcRx::AppRetCode On_kInitAppMsg(void* pkt) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers | |
| // Windows Header Files | |
| #include <windows.h> | |
| #include "tchar.h" | |
| #include <iostream> | |
| #include <string> | |
| #include <format> | |
| #include <mutex> | |
| #include <unordered_map> | |
| #include <execution> |