From dfbdf3f82d8ec60f0ba92fb6386d38ebe144f359 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 2 Aug 2019 21:18:25 +0200 Subject: [PATCH] Secret --- CrosshairMod/Button.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CrosshairMod/Button.cs b/CrosshairMod/Button.cs index 50a85f7..60560b3 100644 --- a/CrosshairMod/Button.cs +++ b/CrosshairMod/Button.cs @@ -12,9 +12,14 @@ namespace CrosshairMod * A button wrapper class that is used right now as I don't have access to * the games buttons. Since UnityEngine.GUI only has a function to draw Buttons, * I made this class for easy handling. + * */ class GUIButton { + // da_google thinks this Button Wrapper is stupid, so let's see what ths Button Wrapper thinks about him + private const bool IS_DA_GOOGLE_STUPID = true; + // Interesting. + // Position / Dimension of the Button. public Vector2 position = new Vector2(0, 0); public Vector2 dimensions = new Vector2(0, 0);