From 0dc11902b1d2951db9815e10d7b98db895a1a81f Mon Sep 17 00:00:00 2001 From: Christopher Date: Tue, 20 Sep 2016 11:03:54 +0100 Subject: [PATCH] Made Flowchart.OnLevelWasLoaded protected --- Assets/Fungus/Scripts/Components/Flowchart.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Fungus/Scripts/Components/Flowchart.cs b/Assets/Fungus/Scripts/Components/Flowchart.cs index 6b410499..ba50bae0 100644 --- a/Assets/Fungus/Scripts/Components/Flowchart.cs +++ b/Assets/Fungus/Scripts/Components/Flowchart.cs @@ -116,7 +116,7 @@ namespace Fungus }; } #else - public virtual void OnLevelWasLoaded(int level) + protected virtual void OnLevelWasLoaded(int level) { LevelWasLoaded(); }