Skip to content

Commit

Permalink
move Netspeak Unreal SDK into Agones Unreal SDK (#1739)
Browse files Browse the repository at this point in the history
* moving Netspeak Agones SDK into main repo SDK

Co-authored-by: Mark Mandel <markmandel@google.com>
  • Loading branch information
domgreen and markmandel committed Aug 7, 2020
1 parent f2ee5ac commit 8e215d3
Show file tree
Hide file tree
Showing 24 changed files with 1,345 additions and 1,007 deletions.
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

0 comments on commit 8e215d3

Please sign in to comment.