package textbox; import textbox.effects.*; /** * Contains an array of used effects. Their index will be their effect index, so an effect token @00[...] * will interact with the first class in the list. */ class TextEffectArray { public static var effectClasses:Array> = [ ColorEffect, // 00 RainbowEffect // 01 // ... ]; }