diff options
Diffstat (limited to 'Runtime/Math/Rect.h')
-rw-r--r-- | Runtime/Math/Rect.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Runtime/Math/Rect.h b/Runtime/Math/Rect.h index 4725375..80170d6 100644 --- a/Runtime/Math/Rect.h +++ b/Runtime/Math/Rect.h @@ -1,6 +1,9 @@ #pragma once -struct Rect +namespace Internal { - int x, y, width, height; -};
\ No newline at end of file + struct Rect + { + int x, y, width, height; + }; +}
\ No newline at end of file |