From bd02973b52290b7b1e045ca3f3321da6670e8e5f Mon Sep 17 00:00:00 2001 From: DucDangAnh Date: Wed, 8 Jul 2020 15:39:01 +0700 Subject: [PATCH] ILane - Add Method Hide, Show --- AIParkingApplication/ILane.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AIParkingApplication/ILane.cs b/AIParkingApplication/ILane.cs index c8e4b33..98e6bba 100644 --- a/AIParkingApplication/ILane.cs +++ b/AIParkingApplication/ILane.cs @@ -4,5 +4,7 @@ { void Start(); void Stop(); + void Hide(); + void Show(); } }