| 62 | #define DrawLeft(i, color) GLOB_ENGINE->DrawLine(Line2DPixel(xx + i, yy + hh - 1 - i, xx + i, yy + i), color, color); |
| 63 | #define DrawTop(i, color) GLOB_ENGINE->DrawLine(Line2DPixel(xx + i, yy + i, xx + ww - 1 - i, yy + i), color, color); |
| 64 | |
| 65 | static RString Decode3DControlText(RString text) |
| 66 | { |
| 67 | return Poseidon::DecodeLegacyTextToRString(text, GLanguage); |
| 68 | } |
| 69 | |
| 70 | inline PackedColor ModAlpha(PackedColor color, float alpha) |
no test coverage detected