Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move Netspeak Unreal SDK into Agones Unreal SDK #1739

Merged
merged 7 commits into from
Aug 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions sdks/unreal/Agones/Agones.uplugin
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
{
"CanContainContent": false,
"Category": "Agones",
"CreatedBy": "",
"CreatedByURL": "",
"Description": "Agones SDK for Unreal, wrapping the Agones REST API.",
"DocsURL": "https://agones.dev/site/docs/guides/client-sdks/unreal/",
"FileVersion": 3,
"Version": 1,
"VersionName": "0.2",
"FriendlyName": "Agones",
"Description": "Unreal Engine Plugin for Agones Game Server Client",
"Category": "Google",
"CreatedBy": "Google Inc",
"CreatedByURL": "https://agones.dev",
"DocsURL": "https://agones.dev/site/docs/",
"Installed": false,
"IsBetaVersion": false,
"IsExperimentalVersion": false,
"MarketplaceURL": "",
"SupportURL": "https://github.com/googleforgames/agones/issues",
"CanContainContent": false,
"IsBetaVersion": true,
"Installed": true,
"Modules": [
{
"LoadingPhase": "PreLoadingScreen",
"Name": "Agones",
"Type": "Runtime",
"LoadingPhase": "Default"
"Type": "Runtime"
}
]
],
"SupportURL": "https://github.com/googleforgames/agones",
"Version": 2,
"VersionName": "2.0.0"
}
49 changes: 0 additions & 49 deletions sdks/unreal/Agones/README.md

This file was deleted.

Binary file modified sdks/unreal/Agones/Resources/Icon128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 16 additions & 18 deletions sdks/unreal/Agones/Source/Agones/Agones.Build.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC All Rights Reserved.
// Copyright 2020 Google LLC All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -16,28 +16,26 @@

public class Agones : ModuleRules
{
public Agones(ReadOnlyTargetRules Target) : base(Target)
public Agones(ReadOnlyTargetRules target) : base(target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;

PublicIncludePaths.AddRange(
new string[] {
});

PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"Http",
});

PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
PublicIncludePaths.AddRange(new string[] {});
PrivateIncludePaths.AddRange(new string[] {});
PublicDependencyModuleNames.AddRange(new[]
{
"Core",
"Http",
"Json",
"JsonUtilities"
});
PrivateDependencyModuleNames.AddRange(
new string[]
new[]
{
"CoreUObject",
"Json",
"JsonUtilities",
"Engine",
"Slate",
"SlateCore"
});
DynamicallyLoadedModuleNames.AddRange(new string[]{ });
}
}
Loading