This commit is contained in:
koneko 2025-04-25 23:43:57 +02:00
parent 112bc0c424
commit 3d10db3c33
5 changed files with 86 additions and 0 deletions

35
.gitignore vendored Normal file
View File

@ -0,0 +1,35 @@
# Ignore build output
bin/
obj/
# Ignore user-specific files
*.user
*.suo
*.userosscache
*.sln.docstates
# Ignore Rider IDE files
.idea/
*.sln.iml
# Ignore Visual Studio Code files
.vscode/
# Ignore temporary files
*.tmp
*.log
*.bak
*.swp
# Ignore compiled files
*.dll
*.exe
*.pdb
# Ignore NuGet packages
*.nupkg
packages/
# Ignore other system files
.DS_Store
Thumbs.db

10
Program.cs Normal file
View File

@ -0,0 +1,10 @@
using OpenTK.Windowing.Desktop;
using OpenTK.Graphics.OpenGL4;
using System.Drawing;
class Program
{
static void Main(string[] args)
{
}
}

17
ksthree.csproj Normal file
View File

@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="OpenTK" Version="4.9.4" />
<PackageReference Include="StbSharp" Version="0.7.2.38" />
<PackageReference Include="StbTrueTypeSharp" Version="1.26.12" />
<PackageReference Include="System.Drawing.Common" Version="9.0.4" />
</ItemGroup>
</Project>

24
ksthree.sln Normal file
View File

@ -0,0 +1,24 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.2.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ksthree", "ksthree.csproj", "{03508444-A1C1-60A9-768F-33A0090E3F11}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{03508444-A1C1-60A9-768F-33A0090E3F11}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{03508444-A1C1-60A9-768F-33A0090E3F11}.Debug|Any CPU.Build.0 = Debug|Any CPU
{03508444-A1C1-60A9-768F-33A0090E3F11}.Release|Any CPU.ActiveCfg = Release|Any CPU
{03508444-A1C1-60A9-768F-33A0090E3F11}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {505BF707-62D6-4307-B5BC-BCA84B120134}
EndGlobalSection
EndGlobal

BIN
lemon-milk.ttf Normal file

Binary file not shown.