This commit is contained in:
h z
2024-06-28 20:46:30 +08:00
commit 36d98438e2
7 changed files with 62 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/

6
Boards/IBaseBoard.cs Normal file
View File

@@ -0,0 +1,6 @@
namespace Enigmos.Boards;
public interface IBaseBoard
{
}

13
Enigmos.csproj Normal file
View File

@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GodotSharp" Version="4.3.0-dev.6" />
</ItemGroup>
</Project>

16
Enigmos.sln Normal file
View File

@@ -0,0 +1,16 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Enigmos", "Enigmos.csproj", "{DD3504AF-4740-4B41-861C-F82C6C73C1C4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DD3504AF-4740-4B41-861C-F82C6C73C1C4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DD3504AF-4740-4B41-861C-F82C6C73C1C4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DD3504AF-4740-4B41-861C-F82C6C73C1C4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DD3504AF-4740-4B41-861C-F82C6C73C1C4}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

9
Modules/IBaseModule.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace Enigmos.Modules;
using Godot;
public interface IBaseModule
{
Vector2 Size { get; set; }
Vector2 Position { get; set; }
Vector2 PositionToBoard { get; }
bool Draggable { get; }
}

6
Ports/IBasePort.cs Normal file
View File

@@ -0,0 +1,6 @@
namespace Enigmos.Ports;
public interface IBasePort
{
}

7
global.json Normal file
View File

@@ -0,0 +1,7 @@
{
"sdk": {
"version": "6.0.0",
"rollForward": "latestMinor",
"allowPrerelease": false
}
}