diff --git a/.gitignore b/.gitignore index 8ee95cf27..1e9aef426 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ Cache/ Binaries/ Output/ Logs/ +Source/*.Gen.* Source/*.csproj /Package_*/ !Source/Engine/Debug diff --git a/Source/FlaxEngine.Gen.cpp b/Source/FlaxEngine.Gen.cpp deleted file mode 100644 index d175cbc6a..000000000 --- a/Source/FlaxEngine.Gen.cpp +++ /dev/null @@ -1,12 +0,0 @@ -// This code was auto-generated. Do not modify it. - -#include "Engine/Scripting/BinaryModule.h" -#include "FlaxEngine.Gen.h" - -StaticallyLinkedBinaryModuleInitializer StaticallyLinkedBinaryModuleFlaxEngine(GetBinaryModuleFlaxEngine); - -extern "C" BinaryModule* GetBinaryModuleFlaxEngine() -{ - static NativeBinaryModule module("FlaxEngine", MAssemblyOptions()); - return &module; -} diff --git a/Source/FlaxEngine.Gen.cs b/Source/FlaxEngine.Gen.cs deleted file mode 100644 index f6090396e..000000000 --- a/Source/FlaxEngine.Gen.cs +++ /dev/null @@ -1,17 +0,0 @@ -// This code was auto-generated. Do not modify it. - -using System.Reflection; -using System.Runtime.InteropServices; - -[assembly: AssemblyTitle("FlaxEngine")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Flax")] -[assembly: AssemblyProduct("FlaxEngine")] -[assembly: AssemblyCopyright("Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] -[assembly: Guid("b8442186-4a70-7c85-704a-857c68060f38")] -[assembly: AssemblyVersion("1.5.6339")] -[assembly: AssemblyFileVersion("1.5.6339")] diff --git a/Source/FlaxEngine.Gen.h b/Source/FlaxEngine.Gen.h deleted file mode 100644 index 81aab8d55..000000000 --- a/Source/FlaxEngine.Gen.h +++ /dev/null @@ -1,15 +0,0 @@ -// This code was auto-generated. Do not modify it. - -#pragma once - -#define FLAXENGINE_NAME "FlaxEngine" -#define FLAXENGINE_VERSION Version(1, 5, 6339) -#define FLAXENGINE_VERSION_TEXT "1.5.6339" -#define FLAXENGINE_VERSION_MAJOR 1 -#define FLAXENGINE_VERSION_MINOR 5 -#define FLAXENGINE_VERSION_BUILD 6339 -#define FLAXENGINE_COMPANY "Flax" -#define FLAXENGINE_COPYRIGHT "Copyright (c) 2012-2023 Wojciech Figat. All rights reserved." - -class BinaryModule; -extern "C" FLAXENGINE_API BinaryModule* GetBinaryModuleFlaxEngine();