From 2884604fddc98229d7b732b67a540bb68d51fa08 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Thu, 10 Aug 2023 17:48:40 -0400 Subject: [PATCH] Renamed Object.Box to GetBox to resolve naming conflicts --- object.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/object.go b/object.go index f62aa2e..3ca47d8 100644 --- a/object.go +++ b/object.go @@ -104,7 +104,7 @@ type Align int; const ( // Object is any obscreen object. Each object must be linked to a box, even if // it is that box. type Object interface { - Box () Box + GetBox () Box } // Box is a basic styled box.