From 9147437d7b9f404f2537aa4ba2773db0c11c227b Mon Sep 17 00:00:00 2001 From: darkfire006 Date: Mon, 25 Jan 2021 11:04:16 -0600 Subject: [PATCH] Merge Classified Merge Classified Class into GameController.vb --- P3D/Core/Classified.vb | 6 ------ P3D/Core/GameController.vb | 7 +++++++ 2 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 P3D/Core/Classified.vb diff --git a/P3D/Core/Classified.vb b/P3D/Core/Classified.vb deleted file mode 100644 index 91ddbe239..000000000 --- a/P3D/Core/Classified.vb +++ /dev/null @@ -1,6 +0,0 @@ -Public Class Classified - Public Shared Remote_Texture_URL As String = "" ' CLASSIFIED - Public Const GameJolt_Game_ID As String = "" ' CLASSIFIED - Public Const GameJolt_Game_Key As String = "" ' CLASSIFIED - Public Shared Encryption_Password As String = "" ' CLASSIFIED -End Class diff --git a/P3D/Core/GameController.vb b/P3D/Core/GameController.vb index b5235dfb0..0dfcf876d 100644 --- a/P3D/Core/GameController.vb +++ b/P3D/Core/GameController.vb @@ -1,6 +1,13 @@ Imports System.Windows.Forms Imports GameDevCommon +Public Class Classified + Public Shared Remote_Texture_URL As String = "" ' CLASSIFIED + Public Const GameJolt_Game_ID As String = "" ' CLASSIFIED + Public Const GameJolt_Game_Key As String = "" ' CLASSIFIED + Public Shared Encryption_Password As String = "" ' CLASSIFIED +End Class + ''' ''' Controls the game's main workflow. '''