Skip to content

Instantly share code, notes, and snippets.

View inslayn's full-sized avatar
😶‍🌫️

Nick McVroom inslayn

😶‍🌫️
View GitHub Profile
/// <summary>
/// Curved Layout Group Created by Freezy - http://www.ElicitIce.com
/// Posted on Unity Forums http://forum.unity3d.com/threads/script-curved-layout.403985/
///
/// Free for any use and alteration, source code may not be sold without my permission.
/// If you make improvements on this script please share them with the community.
///
/// </summary>
namespace UnityEngine.UI.Extensions
// -------------------------------
// Common action invoker interface
public interface IActionInvoker
{
string InvokingActionType { get; }
void Execute(Contexts contexts);
}
// -------------------------------
using System;
using System.Collections.Generic;
using Entitas;
public class CompositeSystem : Systems {
IContexts contexts;
public CompositeSystem(IContexts contexts) {
this.contexts = contexts;
}