Skip to content

Instantly share code, notes, and snippets.

View enisn's full-sized avatar

Enis Necipoglu enisn

View GitHub Profile
using RAGE;
using System;
namespace TecoRP.Client
{
public class BasicInput
{
public static void GetInput(Action<string> action, string title = "", int maxLength = 32, string defaultText = null)
{
Chat.Activate(false);
@kzu
kzu / ObservableDictionary.cs
Last active October 6, 2023 11:01
An ObservableDictionary<TKey, TValue>
// Licensed by Daniel Cazzulino under the MIT License
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Diagnostics;
using System.Dynamic;
using System.Linq;
using System.Text;