瀏覽代碼

Clean up tabs/spaces in this file.

Stephen Damm 6 年之前
父節點
當前提交
31710eb3e0
共有 1 個文件被更改,包括 29 次插入29 次删除
  1. 29 29
      SongBrowserPlugin/Plugin.cs

+ 29 - 29
SongBrowserPlugin/Plugin.cs

@@ -4,31 +4,31 @@ using IllusionPlugin;
 
 namespace SongBrowserPlugin
 {
-	public class Plugin : IPlugin
-	{
-		public string Name
-		{
-			get { return "Song Browser"; }
-		}
+    public class Plugin : IPlugin
+    {
+        public string Name
+        {
+            get { return "Song Browser"; }
+        }
 
-		public string Version
-		{
-			get { return "v2.2.3"; }
-		}
-		
-		public void OnApplicationStart()
-		{
+        public string Version
+        {
+            get { return "v2.2.3"; }
+        }
+
+        public void OnApplicationStart()
+        {
 
         }
 
-		public void OnApplicationQuit()
-		{      
+        public void OnApplicationQuit()
+        {
 
-		}
+        }
 
         private void SceneManagerOnActiveSceneChanged(Scene arg0, Scene scene)
         {
-            
+
         }
 
         private void SceneManager_sceneLoaded(Scene arg0, LoadSceneMode arg1)
@@ -36,26 +36,26 @@ namespace SongBrowserPlugin
         }
 
         public void OnLevelWasLoaded(int level)
-		{          
+        {
             if (SceneManager.GetSceneByBuildIndex(level).name == "Menu")
             {
                 SongBrowserApplication.OnLoad();
             }
         }
 
-		public void OnLevelWasInitialized(int level)
-		{
+        public void OnLevelWasInitialized(int level)
+        {
 
         }
 
         public void OnUpdate()
-		{
-			
-		}
-
-		public void OnFixedUpdate()
-		{
-			
-		}
-	}
+        {
+
+        }
+
+        public void OnFixedUpdate()
+        {
+
+        }
+    }
 }