DungeonMasterEngine.DungeonContent.Actuators.SimpleRemoteActuator.SimpleRemoteActuator C# (CSharp) 메소드

SimpleRemoteActuator() 보호된 메소드

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

            TargetTile = targetTile;
            TargetAction = targetAction;

        }