code optimization

This commit is contained in:
2024-08-18 09:25:16 +02:00
parent 4e4cd1215b
commit c72feb2e33
125 changed files with 67 additions and 358 deletions

View File

@@ -1,6 +1,4 @@
using System.Drawing;
namespace SM64Lib.N64Graphics;
namespace SM64Lib.N64Graphics;
public enum N64Codec { RGBA16, RGBA32, IA16, IA8, IA4, I8, I4, CI8, CI4, ONEBPP };
public enum N64IMode { AlphaCopyIntensity, AlphaBinary, AlphaOne };

View File

@@ -1,12 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<AssemblyTitle>N64Graphics</AssemblyTitle>
<Company>Pilzinsel64</Company>
<Product>N64Graphics</Product>
<UseWindowsForms>true</UseWindowsForms>
<Platforms>AnyCPU</Platforms>
<Configurations>Debug;Release;ReleaseBundle;ReleaseStandalone</Configurations>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualBasic" Version="10.3.0" />

View File

@@ -1,6 +1,4 @@
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Imaging;
using System.Runtime.InteropServices;
namespace SM64Lib.N64Graphics;