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 BenchmarkDotNet.Attributes; | |
| using BenchmarkDotNet.Running; | |
| using System; | |
| using System.IO; | |
| using System.Text.Json; | |
| using System.Text.Json.Serialization; | |
| public partial class Program | |
| { | |
| public static void Main(string[] args) |
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 Prowl.PaperUI; | |
| using Prowl.Quill; | |
| using Prowl.Vector; | |
| using SFML.Graphics; | |
| using SFML.System; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Drawing; | |
| using SFMLVertex = SFML.Graphics.Vertex; | |
| using QuillVertex = Prowl.Quill.Vertex; |
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
| { | |
| "technologies": [ | |
| { | |
| "name": "csharp", | |
| "aliases": ["c#", "cs"], | |
| "binary": "dotnet", | |
| "commands": { | |
| "build": { | |
| "binary": "dotnet", | |
| "arguments": "build" |
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.Runtime.CompilerServices; | |
| using osu.Framework.Graphics; | |
| namespace ProjectHarmony.Game.Extensions; | |
| public static class DrawableExtensions | |
| { | |
| private static readonly ConditionalWeakTable<Drawable, DrawableExtensionProperties> Properties = []; | |
| extension(Drawable el) | |
| { |
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.Text.Json; | |
| namespace BridgeLib; | |
| public struct Request | |
| { | |
| public int Id { get; set; } | |
| public string MethodName { get; set; } | |
| public string JsonData { get; set; } |
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.Numerics; | |
| using BenchmarkDotNet.Attributes; | |
| using BenchmarkDotNet.Running; | |
| using MemoryPack; | |
| using MessagePack; | |
| public partial class Program | |
| { |