diff --git a/src/SimAI.Tests/VMClockTest.cs b/src/SimAI.Tests/VMClockTest.cs index 5278c82..919538f 100644 --- a/src/SimAI.Tests/VMClockTest.cs +++ b/src/SimAI.Tests/VMClockTest.cs @@ -1,5 +1,4 @@ using System.Diagnostics; -using SimAI; using Xunit; namespace SimAntics.Tests; diff --git a/src/SimAI.Tests/VMTest.cs b/src/SimAI.Tests/VMTest.cs index 92da1ad..d76366d 100644 --- a/src/SimAI.Tests/VMTest.cs +++ b/src/SimAI.Tests/VMTest.cs @@ -1,7 +1,7 @@ // This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. // If a copy of the MPL was not distributed with this file, You can obtain one at // http://mozilla.org/MPL/2.0/. -namespace SimAI.Tests; +namespace SimAntics.Tests; public class VMTest { diff --git a/src/SimAI/Engine/VMScheduler.cs b/src/SimAI/Engine/VMScheduler.cs index be373be..f1b19d9 100644 --- a/src/SimAI/Engine/VMScheduler.cs +++ b/src/SimAI/Engine/VMScheduler.cs @@ -1,8 +1,6 @@ // This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. // If a copy of the MPL was not distributed with this file, You can obtain one at // http://mozilla.org/MPL/2.0/. -using SimAntics.Engine.Entities; - namespace SimAntics.Engine; public class VMScheduler diff --git a/src/SimAI/Engine/VMStackFrame.cs b/src/SimAI/Engine/VMStackFrame.cs index aee0178..99b0145 100644 --- a/src/SimAI/Engine/VMStackFrame.cs +++ b/src/SimAI/Engine/VMStackFrame.cs @@ -1,10 +1,6 @@ // This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. // If a copy of the MPL was not distributed with this file, You can obtain one at // http://mozilla.org/MPL/2.0/. - -using SimAntics.Engine.Entities; -using SimAntics.Marshals; - namespace SimAntics.Engine; /// diff --git a/src/SimAI/VM.cs b/src/SimAI/VM.cs index 6538757..0bd4477 100644 --- a/src/SimAI/VM.cs +++ b/src/SimAI/VM.cs @@ -1,10 +1,6 @@ // This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. // If a copy of the MPL was not distributed with this file, You can obtain one at // http://mozilla.org/MPL/2.0/. -using SimAI; -using SimAntics.Engine; -using SimAntics.Engine.Entities; - namespace SimAntics; /// diff --git a/src/SimAI/VMClock.cs b/src/SimAI/VMClock.cs index 5c0ba2a..9b0714a 100644 --- a/src/SimAI/VMClock.cs +++ b/src/SimAI/VMClock.cs @@ -1,7 +1,6 @@ // This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. // If a copy of the MPL was not distributed with this file, You can obtain one at // http://mozilla.org/MPL/2.0/. - namespace SimAntics; public class VMClock