Warning on hud so people don't get confused.

This commit is contained in:
Mari the Deer 2022-08-13 20:54:14 +02:00
commit 05fec33a91
2 changed files with 13 additions and 2 deletions

View file

@ -74,3 +74,14 @@ extend Class HeavyMahSheenGun
}
}
}
// Quadravol
extend Class Quadravol
{
override void DrawWeapon( double TicFrac, double bx, double by, double hs, Vector2 ss )
{
// PLACEHOLDER
String str = "THIS WEAPON IS NOT YET FUNCTIONAL";
Screen.DrawText(NewSmallFont,Font.CR_RED,(Screen.GetWidth()-NewSmallFont.StringWidth(str)*CleanXFac_1)/2,Screen.GetHeight()-(swwm_hudmargin*hs+NewSmallFont.GetHeight()*CleanYFac_1),str,DTA_CleanNoMove_1,true);
}
}