Initial HSMappy release (fork of Mappy)

Made-with: Cursor
This commit is contained in:
2026-02-26 03:54:51 -05:00
commit 9659f7a7d1
72 changed files with 6625 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
namespace Mappy.Classes;
[Flags]
public enum HoverFlags
{
Nothing = 0,
MapTexture = 1 << 0,
Toolbar = 1 << 1,
CoordinateBar = 1 << 2,
Window = 1 << 3,
WindowInnerFrame = 1 << 4,
}
public static class HoverFlagsExtensions
{
public static bool Any(this HoverFlags flags) => flags != HoverFlags.Nothing;
}