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
| NetMessageNewsEulaRequest -> | |
| <- NetMessageNewsEulaResponse News | |
| <- NetMessageNewsEulaResponse EULA | |
| NetGameMessage data: | |
| msgType - Message type | |
| msgData[2000] - messageData max size of 2000 bytes | |
| NetPluginClientMessage data: |
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
| #include "NativeNamedPipe.h" | |
| #include <iostream> | |
| #include <string> | |
| #include <fmt/format.h> | |
| #include <cstdlib> | |
| #include <thread> | |
| std::string paths[] = { | |
| "discord-ipc-", | |
| "app/com.discordapp.Discord/discord-ipc-", |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Runtime.CompilerServices; | |
| using UnityEngine; | |
| [DefaultExecutionOrder(-60)] | |
| public class SpriteTextRenderer : Singleton<SpriteTextRenderer> | |
| { | |
| public struct TextInfo | |
| { |
OlderNewer