diff --git a/FakeMiniAVC/FakeMiniAVC.cs b/FakeMiniAVC/FakeMiniAVC.cs deleted file mode 100644 index f9089b5..0000000 --- a/FakeMiniAVC/FakeMiniAVC.cs +++ /dev/null @@ -1,51 +0,0 @@ -// -// Copyright (C) 2014 CYBUTEK edited for FakeMiniAVC by Malah -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . -// - -#region Using Directives - -using UnityEngine; - -#endregion - -namespace MiniAVC { - [KSPAddon (KSPAddon.Startup.Instantly, false)] - public class Starter : MonoBehaviour { - #region Fields - - private static bool alreadyRunning; - - #endregion - - #region Methods: protected - - protected void Awake() { - alreadyRunning = true; - Debug.Log ("FakeMiniAVC: Awake."); - } - - protected void Start() { - Debug.Log ("FakeMiniAVC: Start."); - //Destroy (this); - } - - protected void OnDestroy() { - Debug.Log ("FakeMiniAVC: OnDestroy."); - } - - #endregion - } -} \ No newline at end of file diff --git a/FakeMiniAVC/FakeMiniAVC.csproj b/FakeMiniAVC/FakeMiniAVC.csproj deleted file mode 100644 index 025fdf1..0000000 --- a/FakeMiniAVC/FakeMiniAVC.csproj +++ /dev/null @@ -1,42 +0,0 @@ - - - - Debug - AnyCPU - {DDAA3636-6206-4370-90ED-335D4AC36037} - Library - FakeMiniAVC - MiniAVC - v3.5 - - - true - full - false - ..\bin - DEBUG; - prompt - 4 - false - - - true - ..\bin - prompt - 4 - false - - - - - - - - ..\..\lib\Managed\UnityEngine.dll - - - ..\..\lib\Managed\Assembly-CSharp.dll - - - - \ No newline at end of file diff --git a/FakeMiniAVC/Properties/AssemblyInfo.cs b/FakeMiniAVC/Properties/AssemblyInfo.cs deleted file mode 100644 index fc7bba7..0000000 --- a/FakeMiniAVC/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; - -// Information about this assembly is defined by the following attributes. -// Change them to the values specific to your project. - -[assembly: AssemblyTitle ("FakeMiniAVC")] -[assembly: AssemblyDescription ("")] -[assembly: AssemblyConfiguration ("")] -[assembly: AssemblyCompany ("")] -[assembly: AssemblyProduct ("")] -[assembly: AssemblyCopyright ("malah")] -[assembly: AssemblyTrademark ("")] -[assembly: AssemblyCulture ("")] - -// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". -// The form "{Major}.{Minor}.*" will automatically update the build and revision, -// and "{Major}.{Minor}.{Build}.*" will update just the revision. - -[assembly: AssemblyVersion ("1.0.*")] - -// The following attributes are used to specify the signing key for the assembly, -// if desired. See the Mono documentation for more information about signing. - -//[assembly: AssemblyDelaySign(false)] -//[assembly: AssemblyKeyFile("")] -