Artemis.Engine.Input.ControlIntent.ControlIntent C# (CSharp) Method

ControlIntent() static private method

static private ControlIntent ( ) : System.Collections.Generic
return System.Collections.Generic
        static ControlIntent()
        {
            Intents.Add("MoveLeft",  new ControlIntent("MoveLeft"));
            Intents.Add("MoveRight", new ControlIntent("MoveRight"));
            Intents.Add("MoveUp",    new ControlIntent("MoveUp"));
            Intents.Add("MoveDown",  new ControlIntent("MoveDown"));
            Intents.Add("Jump",      new ControlIntent("Jump"));
            Intents.Add("Duck",      new ControlIntent("Duck"));
            Intents.Add("Exit",      new ControlIntent("Exit"));
        }

Same methods

ControlIntent::ControlIntent ( string name ) : System.Collections.Generic