This commit is contained in:
h z
2025-02-05 11:50:04 +00:00
commit a3c4d12468
5 changed files with 56 additions and 0 deletions

5
.gitignore vendored Normal file
View File

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

17
Hangman.SDK.csproj Normal file
View File

@@ -0,0 +1,17 @@
<Project Sdk="Godot.NET.Sdk/4.4.0-beta.2">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GodotSharp" Version="4.4.0-beta.2"/>
</ItemGroup>
<ItemGroup>
<Folder Include="src\Attributes\" />
</ItemGroup>
</Project>

22
Hangman.SDK.sln Normal file
View File

@@ -0,0 +1,22 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hangman.SDK", "Hangman.SDK.csproj", "{5BA39DF8-7098-4348-A670-B3F34269F48F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hangman.SDK.Generators", "..\Hangman.SDK.Generators\Hangman.SDK.Generators.csproj", "{41B784D2-841C-44D6-90F3-9219BC264B19}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5BA39DF8-7098-4348-A670-B3F34269F48F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5BA39DF8-7098-4348-A670-B3F34269F48F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5BA39DF8-7098-4348-A670-B3F34269F48F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5BA39DF8-7098-4348-A670-B3F34269F48F}.Release|Any CPU.Build.0 = Release|Any CPU
{41B784D2-841C-44D6-90F3-9219BC264B19}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{41B784D2-841C-44D6-90F3-9219BC264B19}.Debug|Any CPU.Build.0 = Debug|Any CPU
{41B784D2-841C-44D6-90F3-9219BC264B19}.Release|Any CPU.ActiveCfg = Release|Any CPU
{41B784D2-841C-44D6-90F3-9219BC264B19}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

6
src/GlobalRegistry.cs Normal file
View File

@@ -0,0 +1,6 @@
namespace Hangman.SDK;
public partial class GlobalRegistry
{
}

6
src/IRegistry.cs Normal file
View File

@@ -0,0 +1,6 @@
namespace Hangman.SDK;
public interface IRegistry
{
}