Skip to content

Commit

Permalink
Update plugins library
Browse files Browse the repository at this point in the history
  • Loading branch information
nxrighthere committed May 27, 2021
1 parent e955b7c commit 9aee85f
Show file tree
Hide file tree
Showing 15 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Create a new or use an existing Unreal Engine C++ or blueprints project. Clone t
Make sure that the Unreal Engine is not running. Re-run the installation process. Recompile custom code with an updated framework.

#### Command-line options
`--project-path <path>` Sets a path to the Unreal Engine project
`--project-path <path>` Sets a path to an Unreal Engine project

`--compile-tests <true/false>` Indicates whether tests should be compiled

Expand Down
4 changes: 2 additions & 2 deletions Source/Managed/Framework/Codegen.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Unreal Engine 4 .NET 5 integration
* Unreal Engine .NET 5 integration
* Copyright (c) 2021 Stanislav Denisov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down Expand Up @@ -48,7 +48,7 @@ internal static class Shared {
private const TypeAttributes delegateTypeAttributes = TypeAttributes.Class | TypeAttributes.Public | TypeAttributes.Sealed | TypeAttributes.AnsiClass | TypeAttributes.AutoClass;

internal static unsafe Dictionary<int, IntPtr> Load(IntPtr* events, IntPtr functions, Assembly pluginAssembly) {
int position = 0;
int position = 0;
IntPtr* buffer = (IntPtr*)functions;

unchecked {
Expand Down
2 changes: 1 addition & 1 deletion Source/Managed/Framework/Framework.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Unreal Engine 4 .NET 5 integration
* Unreal Engine .NET 5 integration
* Copyright (c) 2021 Stanislav Denisov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
2 changes: 1 addition & 1 deletion Source/Managed/Runtime/Runtime.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Unreal Engine 4 .NET 5 integration
* Unreal Engine .NET 5 integration
* Copyright (c) 2021 Stanislav Denisov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
Binary file modified Source/Managed/Runtime/libs/plugins/UnrealEngine.Plugins.dll
Binary file not shown.
Binary file modified Source/Managed/Runtime/libs/plugins/UnrealEngine.Plugins.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/Native/Source/UnrealCLR/Private/UnrealCLR.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Unreal Engine 4 .NET 5 integration
* Unreal Engine .NET 5 integration
* Copyright (c) 2021 Stanislav Denisov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Unreal Engine 4 .NET 5 integration
* Unreal Engine .NET 5 integration
* Copyright (c) 2021 Stanislav Denisov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Unreal Engine 4 .NET 5 integration
* Unreal Engine .NET 5 integration
* Copyright (c) 2021 Stanislav Denisov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Unreal Engine 4 .NET 5 integration
* Unreal Engine .NET 5 integration
* Copyright (c) 2021 Stanislav Denisov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
2 changes: 1 addition & 1 deletion Source/Native/Source/UnrealCLR/Public/UnrealCLR.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Unreal Engine 4 .NET 5 integration
* Unreal Engine .NET 5 integration
* Copyright (c) 2021 Stanislav Denisov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
2 changes: 1 addition & 1 deletion Source/Native/Source/UnrealCLR/Public/UnrealCLRFramework.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Unreal Engine 4 .NET 5 integration
* Unreal Engine .NET 5 integration
* Copyright (c) 2021 Stanislav Denisov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
2 changes: 1 addition & 1 deletion Source/Native/Source/UnrealCLR/Public/UnrealCLRLibrary.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Unreal Engine 4 .NET 5 integration
* Unreal Engine .NET 5 integration
* Copyright (c) 2021 Stanislav Denisov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
2 changes: 1 addition & 1 deletion Source/Native/Source/UnrealCLR/Public/UnrealCLRManager.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Unreal Engine 4 .NET 5 integration
* Unreal Engine .NET 5 integration
* Copyright (c) 2021 Stanislav Denisov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
2 changes: 1 addition & 1 deletion Source/Native/Source/UnrealCLR/UnrealCLR.Build.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Unreal Engine 4 .NET 5 integration
* Unreal Engine .NET 5 integration
* Copyright (c) 2021 Stanislav Denisov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down

0 comments on commit 9aee85f

Please sign in to comment.