Show More
Commit Description:
Fix bug introduced by FNA upgrade....
Commit Description:
Fix bug introduced by FNA upgrade. I think FNA or one of its dependencies fixed a bug with the pipe key being mislabeled as the backslash key. It does have a backslash on it, but only upon shift.
File last commit:
Show/Diff file:
Action:
isometric-park-fna/Messages/DialogChoiceMessage.cs
17 lines | 344 B | text/x-csharp | CSharpLexer
using Encompass;
using isometricparkfna.Utils;
using isometricparkfna.UI;
namespace isometricparkfna.Messages
{
//You must specify both or you get 0 for a window, which is the default window :(
public struct DialogChoiceMessage : IMessage, IHasEntity
{
public Entity Entity { set; get; }
public int Choice;
}
}