Skip to content

Instantly share code, notes, and snippets.

@CriticalAngle
CriticalAngle / Variable.cs
Last active January 24, 2023 01:14
A simple class for managing a variable of any type.
// ReSharper disable MemberCanBePrivate.Global
using System;
using System.Collections.Generic;
namespace CriticalAngleStudios
{
/// <summary>
/// A simple class for managing a variable of any type.
/// </summary>
/// <typeparam name="T">The variable type.</typeparam>