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 | |
{ |