Commit Description:
Remove async keyword...
Commit Description:
Remove async keyword For some reason, this is suddenly becoming problematic. I honestly don't remember why I added this. Weird!
File last commit:
Show/Diff file:
Action:
isometric-park-fna/Utils/Fact.cs
20 lines | 326 B | text/x-csharp | CSharpLexer
using System;
namespace isometricparkfna.Utils
{
public struct Fact<T>
{
public T Value;
public bool Known {get;}
public bool Aware {get;}
public Fact(T value)
{
this.Value = value;
this.Known = true;
this.Aware = true;
}
}
}