From 6052fd079dc8cb428c8ef03cc8bd17a24ee601cb Mon Sep 17 00:00:00 2001 From: Andrew Macdonald Date: Mon, 6 Mar 2017 11:21:27 -0500 Subject: [PATCH] Removed Example Project System references. --- EgoInterface.cs | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/EgoInterface.cs b/EgoInterface.cs index 1cc3bb2..679d118 100644 --- a/EgoInterface.cs +++ b/EgoInterface.cs @@ -6,28 +6,14 @@ public class EgoInterface : MonoBehaviour static EgoInterface() { //Add Systems here: - EgoSystems.Add( - // Game - new BrickInstantiationSystem(), - new BrickSystem(), - new BallSystem(), - new GameEndSystem(), - new PaddleSystem(), - new ScoreSystem(), - - //UI - new UISystem(), - new PlayAgainButtonSystem() - ); - - //EgoEvents.SetLastEvents< - // ResetGameEvent - //>(); + //EgoSystems.Add( + // ... + //); } void Start() - { - EgoSystems.Start(); + { + EgoSystems.Start(); } void Update()