Skip to content

Commit a77b648

Browse files
authored
move imodule out
1 parent 8e7f54d commit a77b648

File tree

6 files changed

+5
-8
lines changed

6 files changed

+5
-8
lines changed

EIV_Modules/Example/ExampleGameObject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#if false
22
using System.Collections.Generic;
33
using System.Linq;
4-
using EIV_Modules.Interfaces;
4+
using EIV_Modules;
55

66
public class ExampleGameObject
77
{

EIV_Modules/Example/ExampleSub.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#if false
22
using System.Collections.Generic;
33
using System.Linq;
4-
using EIV_Modules.Interfaces;
4+
using EIV_Modules;
55
using EIV_Modules.Extensions;
66

77
public class ExampleSub

EIV_Modules/Extensions/ModuleSub.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using EIV_Modules.Interfaces;
21
using System.Linq;
32

43
namespace EIV_Modules.Extensions;

EIV_Modules/IModule.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
namespace EIV_Modules;
2+
3+
public interface IModule;

EIV_Modules/Interfaces/IModule.cs

Lines changed: 0 additions & 3 deletions
This file was deleted.

EIV_Modules/Modules/BaseChangingModule.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
21
using System.Numerics;
3-
using EIV_Modules.Interfaces;
42

53
namespace EIV_Modules.Modules;
64

0 commit comments

Comments
 (0)