every time i think of playing votv i just wish it was multiplayer now
never gonna happen unless someone makes a sophisticated mod (and server software)

. this cat bites @CaptAsh :3

extension<T>(ICollection<T>)
{
public static bool operator >(T elem, ICollection<T> collection) => collection.Contains(elem);
public static bool operator <(T elem, ICollection<T> collection) => !collection.Contains(elem);
}
var list = new List<int> {1, 2, 3};
if (1 | list)
{
// it in there
}
public static class CollectionExtensions
{
extension<T>(ICollection<T>)
{
public static bool operator |(T elem, ICollection<T> collection) => collection.Contains(elem);
}
}