Skip to content

Commit

Permalink
Merge pull request #1 from linuxgurugamer/master
Browse files Browse the repository at this point in the history
Added function to Historian.cs & updated AssemblyFileVersion
  • Loading branch information
Zeenobit committed Aug 5, 2015
2 parents fbca5a4 + bce8219 commit 95fdfa8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Source/Historian/Historian.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@
using System.Reflection;
using UnityEngine;


namespace KSEA.Historian
{
[KSPAddon(KSPAddon.Startup.MainMenu, true)]
public class Historian : Singleton<Historian>
public class Historian : Singleton<Historian>
{
private List<Layout> m_Layouts = new List<Layout>();
private int m_CurrentLayoutIndex = -1;
Expand Down Expand Up @@ -133,6 +134,10 @@ void Awake()
GameEvents.onGamePause.Add(Game_OnPause);
GameEvents.onGameUnpause.Add(Game_OnUnpause);
}
public void set_m_Active()
{
m_Active = true;
}

void Update()
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]

0 comments on commit 95fdfa8

Please sign in to comment.