DungeonMasterEngine.DungeonContent.Actuators.SimpleRemoteActuator.SimpleRemoteActuator C# (CSharp) Method

SimpleRemoteActuator() protected method

protected SimpleRemoteActuator ( Tile targetTile, ActionStateX targetAction, Vector3 position ) : System
targetTile Tile
targetAction ActionStateX
position Vector3
return System
        protected SimpleRemoteActuator(Tile targetTile, ActionStateX targetAction, Vector3 position) : base(position)
        {
            if (targetTile == null || targetAction == null)
                throw new ArgumentNullException();

            TargetTile = targetTile;
            TargetAction = targetAction;

        }