From 5f00120b9723170e3aa1cfeb4245e367a29b3043 Mon Sep 17 00:00:00 2001 From: profan Date: Mon, 25 May 2026 17:51:38 +0100 Subject: [PATCH] hmm --- .gitignore | 2 +- Program.cs | 3 +-- Sharpero.sln.DotSettings.user | 4 +++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 64fc62e..e5b6078 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -BIN/ +bin/ obj/ /packages/ riderModule.iml diff --git a/Program.cs b/Program.cs index a8e6fe7..4724b7b 100644 --- a/Program.cs +++ b/Program.cs @@ -53,7 +53,7 @@ void CreateOutputImage(int imageSize, float[] imageData, string imageOutputPath) data.SaveTo(stream); } -enum OpCode { VarX, VarY, Const, Add, Sub, Mul, Max, Min, Neg, Square, Sqrt } +internal enum OpCode { VarX, VarY, Const, Add, Sub, Mul, Max, Min, Neg, Square, Sqrt } internal readonly record struct Instruction(int Out, OpCode OpCode, int A = -1, int B = -1, float V = float.MaxValue); @@ -99,7 +99,6 @@ internal static class Parsing } } - internal static class Compiler { static (AssemblyBuilder, MethodBuilder, TypeBuilder) CreateDynamicAssemblyWithMethodBuilder(string assemblyName, diff --git a/Sharpero.sln.DotSettings.user b/Sharpero.sln.DotSettings.user index 90a332d..ab88e32 100644 --- a/Sharpero.sln.DotSettings.user +++ b/Sharpero.sln.DotSettings.user @@ -4,5 +4,7 @@ ForceIncluded ForceIncluded ForceIncluded + ForceIncluded ForceIncluded - ForceIncluded \ No newline at end of file + ForceIncluded + ForceIncluded \ No newline at end of file